/* Opening CTA CSS */

.opening-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2a4a7f 0%, #3878C3 50%, #2a4a7f 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.opening-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(56, 120, 195, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 74, 127, 0.1) 0%, transparent 50%);
    animation: openingFloat 20s ease-in-out infinite;
}

@keyframes openingFloat {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.opening-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.opening-content {
    max-width: none;
}

.opening-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
}

.opening-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.opening-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white !important;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.opening-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.opening-services-area {
    display: flex;
    justify-content: center;
}

.opening-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 320px;
}

.opening-service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.opening-service-item.digital {
    background: linear-gradient(135deg, #3878C3, #2a4a7f);
    border: 1px solid rgba(56, 120, 195, 0.3);
}

.opening-service-item.seo {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.opening-service-item.content {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.opening-service-item.ads {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.opening-service-item.analytics {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.opening-service-item.web {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.opening-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.opening-service-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.opening-service-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.opening-bottom-section {
    grid-column: 1 / -1;
    margin-top: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.opening-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.opening-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.opening-stars {
    display: flex;
    gap: 2px;
}

.opening-star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.opening-rating-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.opening-awards {
    overflow: hidden;
    height: 40px;
}

.opening-awards-scroll {
    display: flex;
    gap: 30px;
    animation: openingScroll 25s linear infinite;
}

@keyframes openingScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.opening-award {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.opening-award-badge {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.opening-award-badge.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.opening-award-badge.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.opening-award-badge.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.opening-award-badge.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.opening-award-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

@keyframes openingRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .opening-hero {
        padding: 60px 20px;
    }

    .opening-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobilde servis kutularını gizle */
    .opening-services-area {
        display: none;
    }

    .opening-bottom-section {
        margin-top: 40px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    /* Mobilde servis kutularını tamamen gizle */
    .opening-services-area {
        display: none;
    }
}