/* SEO Hero Section Styles */
.seo-hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.seo-hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.seo-hero-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.seo-hero-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 400px;
}

.seo-stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #3878C3;
    transition: all 0.3s ease;
}

.seo-stat-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.seo-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3878C3;
    margin-bottom: 8px;
}

.seo-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.seo-stat-item:nth-child(2) {
    border-left-color: #F13C05;
}

.seo-stat-item:nth-child(2) .seo-stat-number {
    color: #F13C05;
}

.seo-hero-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #3878C3 !important;
    margin-bottom: 8px;
    line-height: 1.2;
}

.seo-hero-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3878C3 !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-hero-subtitle {
    font-size: 1.25rem;
    color: #000 !important;
    margin-bottom: 32px;
    line-height: 1.6;
    opacity: 0.8;
}

.seo-cta-button {
    background: linear-gradient(135deg, #F13C05, #ff5722) !important;
    color: white !important;
    padding: 16px 40px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(241, 60, 5, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.seo-cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(241, 60, 5, 0.4) !important;
    text-decoration: none !important;
}

.seo-cta-button::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    max-width: 280px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.seo-cta-button::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.seo-cta-button:hover::before,
.seo-cta-button:hover::after {
    opacity: 1;
    visibility: visible;
}

.seo-reviews-section {
    margin: 60px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.seo-stars {
    display: flex;
    gap: 4px;
}

.seo-star {
    color: #FFD700;
    font-size: 1.5rem;
}

.seo-review-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.seo-awards-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.seo-award {
    background: white !important;
    padding: 20px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    min-width: 220px !important;
    border: 2px solid transparent !important;
    text-decoration: none !important;
    display: block !important;
}

.seo-award:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #3878C3 !important;
    text-decoration: none !important;
}

.seo-award-year {
    background: linear-gradient(135deg, #3878C3, #5a94d4) !important;
    color: white !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
}

.seo-award-title {
    color: #333 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.seo-award.designrush .seo-award-year {
    background: linear-gradient(135deg, #F13C05, #ff5722) !important;
}

.seo-award.clutch .seo-award-year {
    background: linear-gradient(135deg, #00C853, #4CAF50) !important;
}

.seo-award.seoblog .seo-award-year {
    background: linear-gradient(135deg, #9C27B0, #BA68C8) !important;
}

.seo-award.upcity .seo-award-year {
    background: linear-gradient(135deg, #00BCD4, #26C6DA) !important;
}

/* Link stilleri için ek kurallar */
a.seo-award:link,
a.seo-award:visited,
a.seo-award:hover,
a.seo-award:active {
    text-decoration: none !important;
}

a.seo-award:link .seo-award-title,
a.seo-award:visited .seo-award-title,
a.seo-award:hover .seo-award-title,
a.seo-award:active .seo-award-title {
    color: #333 !important;
}

a.seo-award:link .seo-award-year,
a.seo-award:visited .seo-award-year,
a.seo-award:hover .seo-award-year,
a.seo-award:active .seo-award-year {
    color: white !important;
}

.seo-logos-section {
    text-align: center;
}

.seo-logos-title {
    color: #666 !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
    font-weight: 500 !important;
}

.seo-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.seo-logo-item {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 15px;
}

.seo-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.seo-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.seo-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Demo logolar için placeholder */
.seo-logo-placeholder {
    width: 80px;
    height: 30px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.seo-awards-section {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.seo-award {
    animation: fadeInUp 0.6s ease-out both;
}

.seo-award:nth-child(1) { animation-delay: 0.1s; }
.seo-award:nth-child(2) { animation-delay: 0.2s; }
.seo-award:nth-child(3) { animation-delay: 0.3s; }
.seo-award:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .seo-hero-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .seo-hero-content {
        text-align: center;
    }

    .seo-hero-stats {
        max-width: 100%;
    }

    .seo-hero-main-title {
        font-size: 2.5rem;
    }

    .seo-hero-title {
        font-size: 1.8rem;
    }

    .seo-hero-subtitle {
        font-size: 1.1rem;
    }

    .seo-awards-section {
        gap: 20px;
    }

    .seo-award {
        min-width: 180px;
        padding: 15px;
    }

    .seo-reviews-section {
        flex-direction: column;
        gap: 8px;
    }

    .seo-logos-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .seo-hero-title {
        font-size: 2rem;
    }

    .seo-awards-section {
        flex-direction: column;
        align-items: center;
    }

    .seo-award {
        width: 100%;
        max-width: 280px;
    }
}