.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.interactive {
    position: relative;
    z-index: 10;
}

.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 0 20px;
}

/* Footer grid düzeni */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Footer başlıkları */
.footer h3,
.footer h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer içerik */
.footer p {
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer linkler */
.footer a {
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
}

/* Footer link özel stil */
.footer-link {
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--accent-color) !important;
    opacity: 1;
}

/* Footer listeleri */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}

/* Footer alt kısmı */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sosyal medya ikonları */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.2rem;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Admin link stili */
.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.9rem;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.admin-link i {
    font-size: 0.8rem;
}

/* Footer iletişim bilgileri */
.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

/* Responsive düzen */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero {
        margin-top: 0;
        padding-top: 80px;
        /* Mobilde header daha kısa */
        min-height: 50vh;
    }
}

/* Header stilleri */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Bar Styles */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info i {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Navbar */
.navbar {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobil menü stilleri */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        background: var(--white);
        padding: 0;
        flex-direction: column;
        align-items: center;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transition: none;
        display: flex !important;
        visibility: visible !important;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        opacity: 1 !important;
        visibility: visible !important;
        padding: 15px;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Müvekkil Girişi butonu için özel stil */
    .nav-links .btn-primary {
        margin: 15px auto;
        width: auto;
        padding: 12px 30px;
        border-bottom: none;
    }

    /* Header'ın arkasında kalmaması için */
    .header {
        background: var(--white);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding-top: 80px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}