/* 

* Ali Hakan Japon Oto - Kurumsal Web Sitesi

* CSS Stil Dosyası

*/



/* Genel Stiller */

:root {

    --primary-color: #E31E24; /* Logo kırmızısı */

    --secondary-color: #1A1A1A; /* Logo siyahı */

    --dark-color: #000000;

    --light-color: #f8f9fa;

    --success-color: #28a745;

    --danger-color: #dc3545;

    --warning-color: #ffc107;

    --info-color: #17a2b8;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    line-height: 1.6;

    color: #333;

    background-color: #fff;

}



h1, h2, h3, h4, h5, h6 {

    font-weight: 700;

    margin-bottom: 1rem;

}



a {

    color: var(--primary-color);

    text-decoration: none;

    transition: all 0.3s ease;

}



a:hover {

    color: #c01116; /* Kırmızının koyu tonu */

}



.btn {

    border-radius: 0;

    padding: 0.5rem 1.5rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;

}



.btn-primary {

    background-color: var(--primary-color);

    border-color: var(--primary-color);

}



.btn-primary:hover {

    background-color: #c01116; /* Kırmızının koyu tonu */

    border-color: #c01116;

}



.btn-outline-primary {

    border-color: var(--primary-color);

    color: var(--primary-color);

}



.btn-outline-primary:hover {

    background-color: var(--primary-color);

    color: white;

}



.section-title {

    position: relative;

    margin-bottom: 2rem;

}



.section-title h2 {

    font-size: 2.2rem;

    font-weight: 700;

    position: relative;

    display: inline-block;

    margin-bottom: 0.5rem;

}



.section-title h2:after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 50px;

    height: 3px;

    background-color: var(--primary-color);

}



.section-title p {

    font-size: 1.1rem;

    color: var(--secondary-color);

}



/* Üst Bilgi Çubuğu */

.top-bar {

    font-size: 0.9rem;

}



.top-bar a {

    color: #fff;

    transition: all 0.3s ease;

}



.top-bar a:hover {

    color: var(--warning-color);

}



/* Navigasyon */

.navbar {

    padding: 0.5rem 1rem;

}



.navbar-brand img {

    height: 60px;

    width: auto;

}



.navbar-light .navbar-nav .nav-link {

    color: var(--dark-color);

    font-weight: 600;

    padding: 1.5rem 1rem;

    position: relative;

}



.navbar-light .navbar-nav .nav-link:after {

    content: '';

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    background-color: var(--primary-color);

    transition: all 0.3s ease;

    transform: translateX(-50%);

}



.navbar-light .navbar-nav .nav-link:hover:after,

.navbar-light .navbar-nav .nav-link.active:after {

    width: 80%;

}



.navbar-light .navbar-nav .nav-link:hover,

.navbar-light .navbar-nav .nav-link.active {

    color: var(--primary-color);

}



/* Ana Slider */

.carousel-item {

    height: 600px;

    background-size: cover;

    background-position: center;

}



.carousel-item img {

    height: 600px;

    object-fit: cover;

}



.carousel-caption {

    background-color: rgba(0, 0, 0, 0.5);

    padding: 2rem;

    border-radius: 5px;

    max-width: 600px;

    margin: 0 auto;

}



.carousel-caption h2 {

    font-size: 2.5rem;

    margin-bottom: 1rem;

}



.carousel-caption p {

    font-size: 1.1rem;

    margin-bottom: 1.5rem;

}



/* Hizmetler Bölümü */

.service-card {

    border: none;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}



.service-icon {

    margin-bottom: 1.5rem;

}



.service-icon i {

    width: 64px;

    height: 64px;

    line-height: 64px;

    text-align: center;

    border-radius: 50%;

    background-color: var(--light-color);

    color: var(--primary-color);

}



/* Markalar Bölümü */

.brands .row {

    margin: -10px;

}



.brands .col-6 {

    padding: 10px;

}



.brand-logo {

    width: 100px;

    height: 100px;

    object-fit: contain;

    padding: 12px;

    background-color: white;

    border: 1px solid #eee;

    border-radius: 5px;

    filter: grayscale(100%);

    transition: all 0.3s ease;

}



.brand-logo:hover {

    filter: grayscale(0%);

    transform: scale(1.05);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* Neden Biz Bölümü */

.why-us-item {

    margin-bottom: 1.5rem;

}



.why-us-item .icon i {

    color: var(--primary-color);

}



.why-us-item h4 {

    font-size: 1.2rem;

    margin-bottom: 0.5rem;

}



.why-us img {

    max-height: 400px;

    width: 100%;

    object-fit: cover;

    border-radius: 8px;

}



/* İletişim CTA */

.contact-cta {

    background-color: var(--primary-color);

}



/* Footer */

footer {

    background-color: var(--dark-color);

    color: #fff;

}



footer h5 {

    font-size: 1.2rem;

    margin-bottom: 1.5rem;

    position: relative;

}



footer h5:after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 30px;

    height: 2px;

    background-color: var(--primary-color);

}



footer a {

    color: #fff;

    transition: all 0.3s ease;

}



footer a:hover {

    color: var(--primary-color);

    text-decoration: none;

}



.social-icons a {

    display: inline-block;

    width: 36px;

    height: 36px;

    line-height: 36px;

    text-align: center;

    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    margin-right: 0.5rem;

    transition: all 0.3s ease;

}



.social-icons a:hover {

    background-color: var(--primary-color);

    color: #fff;

}



.contact-info li {

    margin-bottom: 1rem;

}



.contact-info i {

    color: var(--primary-color);

    width: 20px;

}



/* Telif Hakkı */

.copyright {

    font-size: 0.9rem;

}



/* Duyarlı Tasarım */

@media (max-width: 992px) {

    .navbar-light .navbar-nav .nav-link {

        padding: 0.8rem 1rem;

    }

    

    .carousel-item {

        height: 450px;

    }

    

    .carousel-caption h2 {

        font-size: 2rem;

    }

}



@media (max-width: 768px) {

    .carousel-item {

        height: 400px;

    }

    

    .carousel-caption {

        padding: 1rem;

    }

    

    .carousel-caption h2 {

        font-size: 1.5rem;

    }

    

    .carousel-caption p {

        font-size: 1rem;

    }

    

    .section-title h2 {

        font-size: 1.8rem;

    }

    

    .why-us img {

        max-height: 300px;

    }

}



@media (max-width: 576px) {

    .top-bar span {

        display: block;

        margin-bottom: 0.5rem;

    }

    

    /* Mobil telefon çağrı düğmesi */
    .mobile-call-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--primary-color);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
        animation: pulse 1.5s infinite;
    }
    
    .mobile-call-button i {
        font-size: 24px;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        70% {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
    }
    
    .carousel-item {
        height: 300px;
    }

    

    .carousel-caption {

        display: block !important;

        padding: 0.8rem;

    }

    

    .carousel-caption h2 {

        font-size: 1.2rem;

    }

    

    .carousel-caption p {

        font-size: 0.9rem;

    }

    

    .section-title h2 {

        font-size: 1.5rem;

    }

    

    .navbar-brand img {

        height: 50px;

    }

    

    .brands .row {

        margin: -5px;

    }

    

    .brands .col-6 {

        padding: 5px;

    }

    

    .brand-logo {

        width: 80px;

        height: 80px;

        padding: 8px;

    }

}



/* Tik İkonları */

.fa-check-circle {

    color: var(--primary-color) !important;

}



/* Mavi tik ikonları için özel stil */

.btn-primary-circle {

    background-color: var(--primary-color);

    color: white;

    border-radius: 50%;

    width: 30px;

    height: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-right: 10px;

}



/* Mavi arka planlı tik ikonları */

.feature-icon {

    background-color: var(--primary-color);

    color: white;

    border-radius: 50%;

    width: 30px;

    height: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-right: 10px;

} 