/* ============================================================
   hero.css — Brand Identity System Impressive Hero (Büyük, Heybetli & Geniş)
   ============================================================ */

.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    border-bottom: 2px solid #E9E9E9;
}

/* Hero Background Image with Gradient Overlay */
.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.90) 50%, rgba(255, 255, 255, 0.45) 100%),
        radial-gradient(ellipse at 80% 30%, rgba(244, 196, 0, 0.25) 0%, transparent 60%),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: 68px 56px;
    max-width: 880px;
}

/* ----- Badge ----- */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: #111111;
    border: 2px solid #F4C400;
    border-radius: var(--radius-full);
    padding: .5em 1.3em;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 900;
    color: #F4C400;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.2);
}

.hero__badge-dot {
    width: 9px;
    height: 9px;
    border-radius: var(--radius-full);
    background: #F4C400;
    flex-shrink: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(1.4); }
}

/* ----- Title (Büyük, Heybetli ve Vurucu Başlık) ----- */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero__title-highlight {
    color: #111111;
    background: #F4C400;
    display: inline-block;
    padding: 4px 16px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(244, 196, 0, 0.35);
}

/* ----- Subtitle ----- */
.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    color: #2B2B2B;
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 600;
}

/* ----- CTA Buttons ----- */
.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: 36px;
}

.hero__btn-primary {
    background: #F4C400;
    color: #111111 !important;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--text-base);
    text-transform: uppercase;
    border: 2px solid #111111;
    box-shadow: 0 6px 20px rgba(244, 196, 0, 0.45);
    padding: 1em 2.4em;
    border-radius: var(--radius-full);
}
.hero__btn-primary:hover {
    background: #111111;
    color: #F4C400 !important;
    border-color: #F4C400;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.3);
}

/* ----- Hero Features Grid (Büyük, Geniş & Şık Kartlar) ----- */
.hero__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #E9E9E9;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #E9E9E9;
    padding: 14px 18px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    box-shadow: 0 4px 16px rgba(17, 17, 17, 0.05);
    transition: all var(--transition);
}

.hero__feature:hover {
    border-color: #F4C400;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 196, 0, 0.25);
}

.hero__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: #111111;
    color: #F4C400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__feature-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    display: block;
}

/* Scroll göstergesi */
.hero__scroll {
    display: none;
}

@media (max-width: 1100px) {
    .hero__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero__content { padding-block: 44px 36px; }
    .hero__title { font-size: clamp(1.8rem, 6.5vw, 2.5rem); }
    .hero__features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero__cta-group { flex-direction: column; }
    .hero__cta-group .btn { width: 100%; justify-content: center; }
}
