﻿.partner-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(8, 15, 40, 0.95), rgba(13, 24, 60, 0.95));
    color: #fff;
    text-align: center;
}

    /* Arka plan parlak efekti */
    .partner-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, transparent 60%);
        z-index: 0;
        pointer-events: none;
    }

    .partner-hero .container {
        position: relative;
        z-index: 1;
    }

    .partner-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #fff, #aab1ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .partner-hero p {
        font-size: 1.2rem;
        color: #d1d5db;
        max-width: 600px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
.container-fluid h2{
    color:red;

}
.form-label {
    color:black;
}
/* 3 Adım Kartları (Nasıl Çalışır?) */
.steps-section {
    padding: 80px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card h3{
    color:red;
}

    .step-card p{
        color:black;
    }
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 198, 255, 0.1);
    color: #00c6ff;
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Hangi Alanlarda? */
.areas-section {
    padding: 80px 0;
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-badge {
    background: #0d183c;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .area-badge:hover {
        background: #007bff;
        transform: scale(1.05);
    }

    .area-badge i {
        font-size: 1.5rem;
        color: #00c6ff;
    }

/* Form Bölümü */
.form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partner-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d183c;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Özel glow butonlar - mevcut temanızla tam uyum */
.btn-glow {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-glow:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 198, 255, 0.5);
        color: #fff;
    }

/* Responsive */
@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-hero h1 {
        font-size: 2.2rem;
    }

    .partner-form-wrapper {
        padding: 30px;
    }
}
