/* QuickTR Özelleştirmeleri - Bu dosyada yaptığınız değişiklikler hemen yansır */

/* Header Styles */
.quicktr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.quicktr-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.quicktr-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.quicktr-header .logo {
    display: flex;
    align-items: center;
}

.quicktr-header .logo img {
    height: 40px;
    display: block;
}

.quicktr-header .main-nav {
    display: flex;
    align-items: center;
}

.quicktr-header .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.quicktr-header .main-nav .nav-link {
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.quicktr-header .main-nav .nav-link:hover {
    color: #2563eb;
}

.quicktr-header .header-btn {
    display: flex;
    align-items: center;
}

.quicktr-header .btn-login {
    background: #10b981 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 1.2;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
    height: fit-content;
    margin: 0 !important;
}

.quicktr-header .btn-login:hover {
    background: #059669 !important;
}

/* Body padding kaldırıldı - header başta gizli */

/* Tüm Oturum Aç butonlarını yeşil yap */
.consulting10 {
    background: #10b981 !important;
    color: white !important;
    padding: 12px 32px !important;
}

.consulting10:hover {
    background: #059669 !important;
    color: white !important;
}

/* Testimonials ve Blog bölümlerini gizle */
.testimonial9-section-area,
div[class*="testimonial"] {
    display: none !important;
}

.blog9-section-area,
div[class*="blog9-section"] {
    display: none !important;
}

/* Footer'ı görünür tut */
.footer9-section-area6 {
    display: block !important;
}

/* Gradient arka plan */
.welcome9-section-area {
    background: linear-gradient(to bottom, #e3f2fd 0%, #ffffff 100%) !important;
    position: relative;
}

.header.about-bg {
    background: linear-gradient(to bottom, rgba(227, 242, 253, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
}

/* Toast Notification */
.toast-notification {
    visibility: hidden;
    min-width: 300px;
    background-color: #2563eb;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 16px 20px;
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 30px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-notification.show {
    visibility: visible;
    transform: translateX(0);
}

.toast-notification.hide {
    transform: translateX(400px);
}

/* Nasıl Çalışır - Kutuları aynı yükseklikte yap */
.works9-boxarea {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

/* Hizmet Avantajları - Tik ile yazı arasına boşluk */
.service-auhtor9-boxarea span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #1e293b;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .quicktr-header .main-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .quicktr-header .main-nav.active {
        transform: translateY(0);
    }

    .quicktr-header .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 30px;
    }

    .quicktr-header .main-nav ul li {
        border-bottom: 1px solid #e2e8f0;
        padding: 15px 0;
    }

    .quicktr-header .main-nav ul li:last-child {
        border-bottom: none;
    }

    .quicktr-header .main-nav .nav-link {
        font-size: 18px;
        display: block;
        padding: 5px 0;
    }

    .quicktr-header .header-btn {
        display: none;
    }
}

/* CTA Section */
.cta-section-area {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.cta-content h2 {
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cta-buttons a.margin-r16 {
    margin-right: 0 !important;
}

/* Contact Form Section */
.contact-section-area {
    background: #ffffff;
}

/* Contact Image */
.contact-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact9auhtorimg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.trandparency1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.2;
    z-index: -1;
}

/* Contact Info Boxes */
.contact-info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #10b981;
    border-color: #10b981;
}

.contact-info-box:hover h3,
.contact-info-box:hover p,
.contact-info-box:hover a {
    color: white !important;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 48px;
    height: 48px;
    transition: filter 0.3s ease;
}

.contact-info-box:hover .contact-icon img {
    filter: brightness(0) invert(1);
}

/* Contact Form Styling */
.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-form button[type="submit"] {
    padding: 10px 24px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-size: 15px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        justify-content: center;
        width: 100%;
        margin-top: 24px;
    }

    .cta-section-area .text-end {
        text-align: center !important;
    }

    .contact-info-box {
        margin-bottom: 24px;
    }
}

/* Service text area - remove green hover background */
.service9-texreas:hover {
    background: transparent !important;
}

.service9-texreas:hover:after {
    height: 6px !important;
}

.service9-boxarea .service9-texreas:hover {
    background: transparent !important;
}

.service9-boxarea:hover .service9-texreas:after {
    height: 6px !important;
}

/* Keep text color same on hover - don't turn white */
.service9-boxarea:hover .service9-texreas h3,
.service9-boxarea:hover .service9-texreas p {
    color: inherit !important;
}

.service9-texreas:hover h3 {
    color: #0b111d !important;
}

.service9-texreas:hover p {
    color: #56605f !important;
}

/* E-Defter (Nasıl Çalışır) boxes - lighter green background on hover */
.works9-boxarea:hover:after {
    background: rgba(29, 175, 104, 0.15) !important;
    height: 100%;
}

/* Keep text readable on hover - don't turn white */
.works9-boxarea:hover h3,
.works9-boxarea:hover p,
.works9-boxarea:hover h1 {
    color: #0b111d !important;
    opacity: 1 !important;
}

.works9-boxarea:hover .title-head {
    color: #0b111d !important;
    opacity: 0.7 !important;
}

/* Hizmet Avantajları (Finansal Yolculuğunuz Burada Başlıyor) boxes - lighter green on hover */
.service-auhtor9-boxarea:hover {
    background: rgba(29, 175, 104, 0.15) !important;
}

/* Keep text dark and readable on hover */
.service-auhtor9-boxarea:hover span {
    color: #0b111d !important;
}

.service-auhtor9-boxarea:hover a span {
    background: #10b981 !important;
    color: white !important;
}

/* Cache buster - 1764371914 */
