/* Hero New Section Styles */
.hero-new {
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-new-container {
    background: #111827;
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-new-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb, 26, 189, 184), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-new-container .container {
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-new-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf: İçerik */
.hero-new-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-new-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-new-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
}

.hero-new-description a {
    color: var(--primary, #1abdb8);
    text-decoration: underline;
    transition: color 0.2s;
}

.hero-new-description a:hover {
    color: var(--primary, #2771eb);
}

/* Özellikler */
.hero-new-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 8px;
    align-items: stretch;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 64px;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-feature-item:hover .hero-feature-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon i {
    font-size: 20px;
    color: var(--primary, #2771eb);
}

.hero-feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Telefon ve Buton */
.hero-new-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.hero-phone-number {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.hero-phone-number a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-phone-number a:hover {
    color: var(--primary, #2771eb);
}

.hero-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--primary, #2771eb);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 39, 113, 235), 0.3);
}

.hero-service-btn:hover {
    background: #1f5fe0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb, 39, 113, 235), 0.4);
}

/* Sağ Taraf: Görsel */
.hero-new-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-new-image {
    width: 100%;
    max-width: 750px;
    position: relative;
}

.hero-new-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-new-container {
        padding: 80px 20px;
        min-height: 500px;
    }
    
    .hero-new-content {
        gap: 40px;
    }
    
    .hero-new-title {
        font-size: 30px;
    }
    
    .hero-new-description {
        font-size: 15px;
    }
    
    .hero-phone-number {
        font-size: 22px;
    }
    
    .hero-new-image {
        max-width: 600px;
    }
    
    .hero-new-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-new-container {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-new-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-new-left {
        order: 1;
        text-align: center;
    }
    
    .hero-new-right {
        order: 2;
    }
    
    .hero-new-title {
        font-size: 30px;
    }
    
    .hero-new-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-new-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: stretch;
        align-items: stretch;
    }
    
    .hero-feature-item {
        justify-content: flex-start;
        padding: 10px 12px;
        gap: 10px;
        min-height: 60px;
    }
    
    .hero-feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-feature-icon i {
        font-size: 18px;
    }
    
    .hero-feature-text {
        font-size: 14px;
    }
    
    .hero-new-actions {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    
    .hero-phone-number {
        font-size: 22px;
    }
    
    .hero-service-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-new-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-new-container {
        padding: 50px 20px;
    }
    
    .hero-new-title {
        font-size: 30px;
    }
    
    .hero-new-description {
        font-size: 15px;
    }
    
    .hero-feature-text {
        font-size: 14px;
    }
    
    .hero-phone-number {
        font-size: 20px;
    }
    
    .hero-service-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
}

