/* Ana site stili */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    color: #fff;
    transition: all 0.3s;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: #0d6efd; /* Bootstrap primary rengi */
}

#sidebar .logo {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
    display: block;
    padding: 10px 0;
}

#sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
}

#sidebar ul li a:hover, #sidebar ul li.active a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    margin-left: 250px;
    transition: all 0.3s;
    padding: 20px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.plan-card {
    transition: transform 0.2s;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.plan-card:hover {
    transform: translateY(-5px);
}

.form-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.form-section h3 {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Yıllık plan görünümü */
.plan-table th {
    background-color: #f1f8ff;
}

.plan-table td, .plan-table th {
    vertical-align: middle;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h2 {
    font-weight: 600;
    margin-bottom: 5px;
}

.plan-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.plan-info-item {
    flex: 0 0 48%;
    margin-bottom: 10px;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
    }
    
    #sidebar .logo {
        font-size: 1.2rem;
    }
    
    #sidebar ul li a i {
        margin-right: 0;
        display: block;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    #sidebar ul li a span {
        display: none;
    }
    
    #content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

/* ===== Site Footer ===== */
.site-footer {
    --footer-accent: #e0983a;
    background: #14161c;
    color: rgba(255, 255, 255, 0.72);
    padding: 56px 0 0;
    margin-top: 60px;
}

.site-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.site-footer-brand {
    flex: 0 0 280px;
    max-width: 320px;
}

.site-footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.site-footer-logo img {
    max-height: 44px;
    max-width: 220px;
}

.site-footer-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

.site-footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer-social-icon:hover {
    background: var(--footer-accent);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer-columns {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.site-footer-col {
    flex: 1 1 160px;
    min-width: 160px;
}

.site-footer-col-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 12px;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.site-footer-links a:hover {
    color: var(--footer-accent);
}

.site-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.site-footer-contact-item i {
    color: var(--footer-accent);
    width: 16px;
    margin-top: 2px;
    text-align: center;
}

.site-footer-contact-item:hover {
    color: #fff;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.site-footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
    .site-footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .site-footer-brand {
        flex-basis: auto;
        max-width: none;
    }
}
