﻿.hero-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

.hero-text {
    order: 1; /* Sağa taşı */
    max-width: 600px;
}

.hero-image {
    order: 2; /* Sola taşı */
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

    .hero-title .highlight {
        color: var(--primary-color);
        position: relative;
    }

    .hero-title .subtitle {
        font-size: 1.8rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(41, 61, 129, 0.3);
        color: white;
    }

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

.btn.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.quick-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-item .icon {
        font-size: 1.5rem;
    }

    .contact-item strong {
        font-size: 0.9rem;
        color: var(--primary-color);
    }

    .contact-item p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin: 0;
    }

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--text-primary);
        font-weight: 700;
    }

    .section-header p {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.service-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 30px;
}

    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--text-primary);
        font-weight: 600;
    }

    .service-content p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 20px;
    }

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

    .service-features li {
        padding: 5px 0;
        color: var(--text-secondary);
        position: relative;
        padding-left: 20px;
    }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .service-link:hover {
        color: var(--primary-hover);
    }

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 800px; /* Genişlet */
    margin: 0 auto; /* Ortala */
}

.hero-image {
    text-align: center;
}

    .hero-image img {
        width: 175%;
        border-radius: 15px;
    }


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.fleet-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

    .fleet-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient( 45deg, transparent, transparent 100px, rgba(41, 61, 129, 0.02) 100px, rgba(41, 61, 129, 0.02) 200px );
        pointer-events: none;
    }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.fleet-item {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

    .fleet-item:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

.fleet-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.fleet-item:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(41, 61, 129, 0.8) 0%, rgba(18, 42, 80, 0.6) 100% );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.fleet-item:hover .fleet-overlay {
    opacity: 1;
}

.fleet-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.fleet-item:hover .fleet-info {
    transform: translateY(0);
}

.fleet-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.fleet-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.fleet-content {
    padding: 30px;
}

    .fleet-content h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: var(--text-primary);
        font-weight: 600;
    }

    .fleet-content p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 20px;
    }

.fleet-features {
    list-style: none;
}

    .fleet-features li {
        padding: 5px 0;
        color: var(--text-secondary);
        position: relative;
        padding-left: 20px;
        font-size: 0.9rem;
    }

        .fleet-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

/* Fleet Stats */
.fleet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 50px 0;
    border-top: 2px solid var(--border-color);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Dark theme adjustments */
[data-theme="dark"] .fleet-overlay {
    background: linear-gradient( 135deg, rgba(220, 38, 38, 0.8) 0%, rgba(153, 27, 27, 0.6) 100% );
}

[data-theme="dark"] .stat-icon {
    background: linear-gradient(135deg, #e84d5d 0%, #c23346 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .stat-info h3 {
    color: #e84d5d;
}

[data-theme="dark"] .stat-box {
    border-left-color: #e84d5d;
}

@media (max-width: 768px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .quick-contact {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .fleet-stats {
        grid-template-columns: 1fr;
    }

    .fleet-image {
        height: 200px;
    }

    .fleet-content {
        padding: 20px;
    }
}

