/* vekarer Nedir Sayfası Stilleri */

:root {
    --primary-color: #000a68;
    --secondary-color: #4CAF50;
    --accent-color: #FFC107;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --success: #27AE60;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Genel overflow düzeltmesi */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Hero Section */
.vekarer-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a8a 100%);
    padding: 130px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vekarer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    color: var(--white);
    margin-top: 35px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.btn-hero {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.btn-hero:hover {
    background: #FFD54F;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    color: var(--primary-color);
}

/* vekarer Tanım Section */
.vekarer-tanim-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), #001a8a);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    color: var(--white);
    position: relative;
}

.highlight-box i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.tanim-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    background: var(--bg-light);
}

.tanim-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 10, 104, 0.95), transparent);
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Nasıl Çalışır Section */
.nasil-calisir-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.step-item {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    flex-grow: 1;
}

.step-connector {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    align-self: center;
    margin-top: 80px;
}

/* Avantajlar Section */
.avantajlar-section {
    padding: 80px 0;
    background: var(--white);
}

.avantaj-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.avantaj-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 10, 104, 0.1);
}

.avantaj-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.avantaj-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.avantaj-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Komisyon Section */
.komisyon-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.komisyon-list {
    margin-top: 30px;
}

.komisyon-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.komisyon-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.komisyon-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.komisyon-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.komisyon-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.komisyon-calculator-box {
    background: linear-gradient(135deg, var(--primary-color), #001a8a);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 10, 104, 0.2);
}

.komisyon-calculator-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.calculator-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.calculator-form label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.calculator-form .form-control {
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.calculator-result {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.result-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* Proje Özellikleri Section */
.proje-ozellikleri-section {
    padding: 80px 0;
    background: var(--white);
}

.ozellik-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.ozellik-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 10, 104, 0.2);
}

.ozellik-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.ozellik-card:hover .ozellik-icon {
    color: var(--accent-color);
}

.ozellik-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.ozellik-card:hover h4 {
    color: var(--white);
}

.ozellik-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    transition: var(--transition);
}

.ozellik-card:hover p {
    color: var(--white);
}

/* CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: #000a68;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-stat i {
    font-size: 2rem;
    color: var(--accent-color);
}

.btn-cta-large {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

.btn-cta-large:hover {
    background: #FFD54F;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
    color: var(--primary-color);
}

.cta-note {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin: 0 auto;
    }

    .image-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-hero,
    .btn-cta-large {
        padding: 15px 30px;
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-item {
        padding: 30px 20px;
    }

    .avantaj-card,
    .ozellik-card {
        margin-bottom: 15px;
    }

    .komisyon-calculator-box {
        padding: 30px 20px;
    }

    .result-amount {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    /* Tüm section'ların padding'ini azalt */
    .vekarer-tanim-section,
    .nasil-calisir-section,
    .avantajlar-section,
    .komisyon-section,
    .proje-ozellikleri-section {
        padding: 50px 0;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .vekarer-hero {
        padding: 100px 0 50px;
    }
}

/* Masaüstü için görsel yüksekliğini eşitleme */
@media (min-width: 992px) {
    .vekarer-tanim-section .row.align-items-center {
        align-items: stretch !important;
    }

    .vekarer-tanim-section .col-lg-6 {
        display: flex;
        flex-direction: column;
    }

    .tanim-image {
        height: 100%;
        min-height: 0; /* min-height override */
    }
}