﻿/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + var(--top-bar-height) + 4rem); 
    padding-bottom: 6rem;
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 68%);
    z-index: 0;
    filter: blur(72px);
    opacity: 0.28;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 8%, var(--primary) 50%, transparent 92%);
    opacity: 0.55;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    overflow-wrap: break-word;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    text-align: left; 
    border-left: 4px solid var(--primary); 
    padding-left: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.musteri-hizmetleri-mobil {
    display: none;
}

@media (max-width: 768px) {
    .musteri-hizmetleri-masa {
        display: none;
    }

    .musteri-hizmetleri-mobil {
        display: inline-flex;
    }
}

