/* --- MODERN HERO SECTION (Kanaljet 2026) --- */

/* 1. Ana Kapsayıcı */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 2. Parallax Arka Plan */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transform: scale(1.1);
    animation: slow-zoom 20s infinite alternate;
}

@keyframes slow-zoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.2); }
}

/* 3. Modern Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 13, 22, 0.95) 0%, rgba(3, 10, 16, 0.7) 60%, rgba(3, 12, 14, 0.4) 100%);
    z-index: -1;
}

/*
 background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 51, 102, 0.7) 60%, rgba(0, 164, 204, 0.4) 100%);
*/

/*
background: linear-gradient(135deg, rgba(0, 23, 46, 0.95) 0%, rgba(0, 21, 42, 0.7) 60%, rgba(0, 33, 42, 0.4) 100%);
*/

/* 4. İçerik Alanı */
.hero-content {
    color: #fff;
}

/* Badge (Etiket) */
.hero-badge {
    display: inline-block;
    background-color: rgba(0, 164, 204, 0.2);
    color: #00ccff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 164, 204, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ana Başlık */
.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.text-highlight {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px; 
}

/*
.text-highlight::after {
    content: 'Rohr- & Kanalreinigung';
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% + 20px); 
    color: #00A4CC;
    width: 0%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    -webkit-text-stroke: 0px transparent;
    animation: fill-text 2.5s ease-out forwards 0.5s;
}
*/

@media (max-width: 991px) {
    .text-highlight {
        padding-bottom: 5px;
    }
    .text-highlight::after {
        height: calc(100% + 10px);
    }

    .hero-desc {
        font-size: 14px!important;
    }
}

@keyframes fill-text { 
    0% { width: 0%; }
    100% { width: 100%; } 
}

/* Açıklama */
.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 300;
}
.hero-desc strong { color: #fff; font-weight: 600; }

/* Özellikler Listesi */
.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-features li {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-features i { color: #00A4CC; }

/* 5. Butonlar */
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* TURKUAZ MODERN JETZT ANRUFEN BUTONU */
.btn-hero-primary {
    background: linear-gradient(135deg, #00A4CC 0%, #008ba8 100%) !important;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0, 164, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #00c2f0 0%, #00A4CC 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 164, 204, 0.4);
    color: #fff !important;
}

/* Parlama Efekti */
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    animation: shine-hero-cyan 4s infinite;
}

.btn-hero-primary i {
    animation: phone-shake-hero 2s infinite;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

/* 6. Sağ Taraf Bilgi Kartı */
.hero-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #fff;
}

.hero-info-card h4 { 
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 10px;
    color: #ffffff;
}

.hero-info-card p { 
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin: 0; 
    line-height: 1.4;
}

.card-hr {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.card-footer-text {
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #00A4CC;
    font-weight: 800;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #00A4CC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 164, 204, 0.4);
    color: #ffffff;
}

.floating-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 7. Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.hero-shape-divider .shape-fill {
    fill: #ffffff;
}

/* 8. Mobil Uyumluluk */
@media (max-width: 991px) {
    .hero-title { font-size: 36px; }
    .hero-section { padding: 75px 0 80px; }
    .hero-bg-image { background-attachment: scroll; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

/* --- Pulse & Shine Animasyonları --- */
.btn-pulse {
    position: relative;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: #00A4CC;
    z-index: -1;
    animation: pulse-ring-cyan 2s infinite;
}

@keyframes pulse-ring-cyan {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.15, 1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes shine-hero-cyan {
    0% { left: -60%; }
    15% { left: 120%; }
    100% { left: 120%; }
}

@keyframes phone-shake-hero {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}