﻿
.modern-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e2fff3 50%, #fafbff 100%);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.modern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 2fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgb(60 255 0 / 41%);
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #1eb44329;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.7s ease-out;
}

.badge-dot {
    position: relative;
    display: inline-block;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    background: #1e293b;
}

    .badge-dot::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #1e293b;
        opacity: 0.75;
        animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.modern-hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    animation: slideInLeft 0.7s ease-out;
}

@media (min-width: 640px) {
    .modern-hero-content {
        max-width: none;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .modern-hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .modern-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .modern-hero h1 {
        font-size: 56px;
    }
}

.modern-hero p.lead {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .modern-hero p.lead {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .modern-hero p.lead {
        font-size: 1.25rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-actions .btn {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: #64748b;
    flex-wrap: wrap;
    width: max-content;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-divider {
    width: 1px;
    height: 1rem;
    background: #e2e8f0;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slideInRight 1s ease-out 0.2s both;
    width: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(2rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: contain;
}

@media (min-width: 640px) {
    .hero-image {
        max-width: 20rem;
    }

    .modern-search-input .btn {
        min-width: 140px;
        height: 3.5rem;
        font-weight: 600;
    }
}

@media (min-width: 768px) {
    .hero-image {
        max-width: 25rem;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: 30rem;
    }
}

.hero-search-container {
    position: relative;
    z-index: 20;
    margin-top: 2rem;
    padding-bottom: 3rem;
    width: 100%;
}

.modern-search-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
}

.modern-search-input {
    position: relative;
}

    .modern-search-input input {
        height: 3.5rem;
        font-size: 1.125rem;
        border: 1px solid #e2e8f0;
        background: rgba(255, 255, 255, 0.9);
    }

        .modern-search-input input:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }



/* Search Results Section */
.search-results-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out, padding 0.6s ease;
    background: #f8fafc;
    padding: 0;
}

    .search-results-section.show {
        max-height: 3000px;
        opacity: 1;
        padding: 4rem 0;
    }

.search-results {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.4s ease-out;
}

.search-results-section.show .search-results {
    transform: translateY(0);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.results-count {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-ghost:hover {
        background: #f1f5f9;
        color: #1e293b;
    }

.results-list {
    padding: 2rem;
    min-height: 200px;
}

.result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInResult 0.4s ease-out forwards;
}

    .result-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .result-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .result-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .result-card:nth-child(4) {
        animation-delay: 0.4s;
    }

@keyframes slideInResult {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.no-results-icon {
    width: 4rem;
    height: 4rem;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.results-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #f8fafc;
}

.btn-outline {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-outline:hover {
        background: #1e293b;
        color: white;
        border-color: #1e293b;
    }

/* Features Section */
.modern-features {
    padding: 8rem 0;
    background: white;
    transition: padding 0.6s ease;
}

    .modern-features.with-results {
        padding-top: 4rem;
    }

.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

    .feature-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-0.25rem);
        background: #f4f4f4;
    }

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Feature Section Image - Responsive */
.feature-section-image {
    max-width: 200px;
    height: auto;
}

@media (min-width: 768px) {
    .feature-section-image {
        max-width: 400px;
    }
}

/* CTA Section */
.modern-cta {
    padding: 6rem 0;
    position: relative;
}

    .modern-cta::before {
        content: '';
        position: absolute;
        right: -20%;
        width: 80%;
        height: 40%;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.3);
        filter: blur(120px);
    }

    .modern-cta::after {
        content: '';
        position: absolute;
        bottom: 20%;
        left: -20%;
        width: 60%;
        height: 60%;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.3);
        filter: blur(100px);
    }

.cta-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 260px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.73);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
}

    .cta-background-text::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        height: 10px;
        background: rgb(0 0 0 / 33%);
        filter: blur(10px);
        border-radius: 50%;
        z-index: -1;
    }

.cta-content {
    position: relative;
    z-index: 10;
    background: rgb(0 38 226 / 11%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid #ffffffc9;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

    .cta-content::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 20px;
        background: rgba(0, 0, 0, 0.2);
        filter: blur(10px);
        border-radius: 50%;
        z-index: -1;
    }

    .cta-content:hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    }

        .cta-content:hover::after {
            bottom: -40px;
            height: 20px;
            background: rgba(0, 0, 0, 0.2);
        }

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
}

.faq-image-container {
    display: block;
}



@media (max-width: 991px) {
    .cta-background-text {
        font-size: 180px;
    }
}

@media (max-width: 767px) {
    .cta-background-text {
        font-size: 150px;
    }
}


/* Modern CTA section overflow düzeltmesi */
.modern-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
/* Responsive */
@media (max-width: 991px) {
    .hero-card {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .modern-hero-content {
        text-align: center;
        max-width: 42rem;
        margin: 0 auto;
    }

    .modern-hero h1 {
        font-size: 2.75rem;
    }

    .modern-hero p.lead {
        font-size: 1.25rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-flex;
    }

    .faq-image-container {
        display: none;
    }

    #faq .col-lg-6 {
        text-align: center;
    }
}




@media (max-width: 639px) {
    .modern-hero h1 {
        font-size: 2rem;
    }

    .modern-hero p.lead {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .results-header {
        flex-direction: column;
        gap: 1rem;
    }
}

.report-btn {
    background: #e9ff43c2;
    color: #1e293b;
    line-height: 58px;
    padding: 0 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
}

    .report-btn:hover {
        background: #e0f349c2 !important;
        color: #000 !important;
    }

/* ✅ Arama limit bilgisi göstergesi */
.search-limit-info {
    margin-top: 1rem;
    text-align: center;
}

    .search-limit-info .progress {
        height: 5px;
        max-width: 400px;
        margin: 0.5rem auto;
    }



.faq-buttons-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-buttons-container .btn {
    flex: 1 1 auto;
    min-width: 200px;
}

/* Küçük cihazlarda butonları alt alta göster */
@media (max-width: 576px) {
    .faq-buttons-container {
        flex-direction: column;
        gap: 0.75rem;
    }

        .faq-buttons-container .btn {
            width: 100%;
            min-width: 100%;
            margin: 0 !important;
        }
}

/* Orta boyutlu cihazlarda (tablet) */
@media (min-width: 577px) and (max-width: 768px) {
    .faq-buttons-container .btn {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }
}

.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ✅ Billing Toggle Container */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

/* ✅ Label'lar - Tıklanabilir */
.billing-toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

    .billing-toggle-label.active {
        color: #1e293b;
    }

    .billing-toggle-label:hover {
        color: #1e293b;
    }

/* ✅ Toggle Switch */
.billing-toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .billing-toggle-switch::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 4px;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .billing-toggle-switch.yearly {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    }

        .billing-toggle-switch.yearly::before {
            transform: translateX(28px);
        }

/* ✅ Tasarruf Badge */
.billing-save-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ✅ Pricing Cards Container */
.pricing-cards-wrapper {
    position: relative;
    min-height: 600px;
}

.pricing-cards {
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

    .pricing-cards.switching {
        opacity: 0;
    }

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: #3b82f6;
    }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

    .pricing-card.featured {
        border-color: #3b82f6;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            transform: scaleX(1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-8px);
        }

.pricing-badge-featured {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-plan-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0.25rem;
}

.pricing-period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #475569;
    font-size: 0.95rem;
}

    .pricing-feature i {
        color: #10b981;
        margin-right: 0.75rem;
        font-size: 1.125rem;
        flex-shrink: 0;
    }

    .pricing-feature.disabled {
        color: #cbd5e1;
    }

        .pricing-feature.disabled i {
            color: #cbd5e1;
        }

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    background: white;
    color: #1e293b;
}

    .pricing-cta:hover {
        background: #1e293b;
        color: white;
        border-color: #1e293b;
        transform: translateY(-2px);
    }

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
}

    .pricing-card.featured .pricing-cta:hover {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

/* Responsive */
@media (max-width: 1199px) {
    .pricing-cards .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

        .pricing-card.featured:hover {
            transform: translateY(-8px);
        }
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .pricing-cards .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

