/* Hero Modern Section */
.hero-modern {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('/resimler/sitebanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Hero Compact - Mobil Öncelikli */
.hero-compact {
    min-height: 350px !important;
    padding: 30px 0 !important;
}

.hero-compact .hero-content {
    padding: 30px 20px !important;
}

.hero-compact .hero-title {
    font-size: 32px !important;
    margin-bottom: 15px !important;
}

.hero-compact .hero-subtitle {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .hero-compact {
        min-height: 280px !important;
    }

    .hero-compact .hero-title {
        font-size: 24px !important;
    }

    .hero-compact .hero-subtitle {
        font-size: 14px !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.quality-badge i {
    font-size: 16px;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Çarpı işaretli ikonlar */
.icon-crossed {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.icon-crossed .fa-hammer,
.icon-crossed .fa-drill {
    font-size: 36px;
    opacity: 0.6;
}

.icon-crossed .cross-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #e74c3c;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.trust-badge i {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 15px;
}

.trust-badge h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.trust-badge p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    font-size: 24px;
}

/* Mobil UX İyileştirmeleri */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-item {
        padding: 20px 10px;
    }

    .benefit-item i,
    .icon-crossed .fa-hammer,
    .icon-crossed .fa-drill {
        font-size: 28px;
    }

    .icon-crossed .cross-mark {
        font-size: 38px;
    }

    .benefit-item span {
        font-size: 12px;
    }

    .hero-cta {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin: 0 -20px;
    }

    .btn-xl {
        width: 100%;
        margin-bottom: 10px;
        font-size: 16px;
        padding: 15px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-badge {
        padding: 20px 15px;
    }

    .trust-badge i {
        font-size: 36px;
    }

    .trust-badge h3 {
        font-size: 16px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }
}