

/* ---------------- HEADER ---------------- */
header {
     position: sticky; /* sticky header */
    top: 0;
    left: 0;
    width: 100%;
    background: white; /* transparent değil, sticky daha net görünür */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6a4bc4;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #222;
    text-decoration: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #6a4bc4;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.flag-icon {
    width: 28px;
    height: 20px;
    cursor: pointer;
    transition: transform .3s;
}

.flag-icon:hover {
    transform: scale(1.15);
}

/* ---------------- MOBILE MENU ---------------- */
#mobileMenuBtn {
    border: none;
    background: transparent;
}

#mobileMenuBtn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #444;
    position: relative;
}

#mobileMenuBtn span::before,
#mobileMenuBtn span::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 3px;
    background: #444;
    left: 0;
    transition: .3s;
}

#mobileMenuBtn span::before {
    top: -8px;
}

#mobileMenuBtn span::after {
    top: 8px;
}

#mobileMenuBtn.active span {
    background: transparent;
}

#mobileMenuBtn.active span::before {
    transform: rotate(45deg);
    top: 0;
}

#mobileMenuBtn.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    padding: 80px 20px;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #222;
    font-size: 1.2rem;
    font-weight: 500;
}

/* ---------------- SLIDER ---------------- */
.slider-container {
    margin-top: 160px;  
    padding: 0 40px; 
}

/* Video slider kapsayıcı */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 90px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Video */
.slider-wrapper video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    filter: brightness(50%); /* Videonun opaklığını azaltır, yazıyı netleştirir */
}

/* Slider text */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    font-weight: 800; /* kalın font */
    text-align: center;
}

.slider-text .small-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.slider-text .main-title {
    font-size: 3rem;
    font-weight: 900; /* başlık daha kalın */
    margin-bottom: 20px;
}

.slider-text .description {
    font-size: 1.3rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buton */
.slider-text .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #6a4bc4;
    border: none;
    color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-text .btn:hover {
    background-color: #5939a1;
    transform: translateY(-2px);
}

/* Mobil uyumlu */
@media(max-width:768px){
    .slider-wrapper video {
        height: 400px;
    }
    .slider-text .small-title {
        font-size: 1.2rem;
    }
    .slider-text .main-title {
        font-size: 2rem;
    }
    .slider-text .description {
        font-size: 1rem;
    }
    .slider-text .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}


.slider-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 90px; 
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    width: 100%;
    padding: 0 20px;
}

.slider-text .small-title {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slider-text .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.slider-text .description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-text .btn {
    padding: 10px 25px;
    font-size: 1rem;
}

.slider-text .btn {
    padding: 10px 25px;
    font-size: 1rem;
    background-color: #6a4bc4;
    border: none;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 8px; 
}

.slider-text .btn:hover {
    background-color: #5939a1; 
    transform: translateY(-2px); 
}

.neden-biz .section-title {
    font-size: 2.5rem; /* daha büyük başlık */
    font-weight: 700;
    color: #6a4bc4;
}

.neden-biz .section-subtitle {
    color: #555;
    font-size: 1.2rem; /* biraz daha büyük */
    max-width: 800px;
    margin: 0 auto 50px;
}

.neden-biz .feature h5 {
    font-size: 1.3rem; /* başlık biraz büyük */
    font-weight: 600;
    color: #6a4bc4;
}

.neden-biz .feature p {
    font-size: 1rem; /* paragraflar daha uzun */
    color: #666;
}

.feature-divider {
    border: 0;
    border-top: 1px solid #ccc; /* yatay çizgi */
    margin: 15px 0;
}

/* ---------------- NEDEN BİZ ---------------- */
.neden-biz .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a4bc4;
}

.neden-biz .section-subtitle {
    color: #555;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.neden-biz .feature h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6a4bc4;
}

.neden-biz .feature p {
    font-size: 1rem;
    color: #666;
}

.feature-divider {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 15px 0;
}

.neden-biz-img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 50px !important; /* !important ile diğer kuralları geç */

}

.features-side {
    display: flex;
    flex-direction: column;
    justify-content: center; /* dikey ortalama */
    gap: 1rem; /* önce 2rem idi, daha yakın olsun diye 1rem yaptık */
    margin-top: 0; /* yukarıya kaydır */
    margin-bottom: 0; /* aşağıya kaydır */
}




.araclar .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a4bc4;
    margin-bottom: 50px;
}

.arac-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6a4bc4;
    margin-bottom: 15px;
}

.arac-ozellik li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.arac-card .btn {
    border-radius: 6px;
    font-weight: 500;
}

.arac-card .btn-success {
    background-color: #25d366;
    border: none;
}

.arac-card .btn-success:hover {
    background-color: #1ebe57;
}

.arac-card .btn-primary {
    background-color: #6a4bc4;
    border: none;
}

.arac-card .btn-primary:hover {
    background-color: #5939a1;
}



.hakkimizda .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a4bc4;
    margin-bottom: 20px;
}

.hakkimizda .section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hakkimizda-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hakkimizda-features .feature-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6a4bc4;
}

.hakkimizda-features .feature-item p {
    font-size: 1rem;
    color: #666;
    margin-left: 28px; /* ikon ile boşluk */
}

/* Mobilde responsive */
@media(max-width:768px){
    .hakkimizda-features .feature-item p {
        margin-left: 0;
    }
    .hakkimizda .section-title {
        font-size: 2rem;
    }
}


/* ---------------- İSTATİSTİKLER ---------------- */
.istatistikler {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.istatistikler .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a4bc4;
    margin-bottom: 10px;
}

.istatistikler p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Dikey ve yatay ortalama */
.istatistikler .row > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobil uyum */
@media(max-width:768px){
    .istatistikler {
        padding: 40px 15px;
    }
    .istatistikler .counter {
        font-size: 2rem;
    }
    .istatistikler p {
        font-size: 0.9rem;
    }
}


@media(max-width:768px){
    .arac-ozellik {
        text-align: center;
    }
}



@media(max-width:768px){
    .neden-biz .feature {
        text-align: center !important;
    }

    .neden-biz-img {
        max-height: 300px;
        margin: 20px 0;
        border-radius: 0; /* mobilde radius yok */
    }
}


@media(max-width:768px){
    .slider-container {
        margin-top: 80px; 
        padding: 0; 
    }
    .slider-wrapper {
        border-radius: 0; 
    }
    .slider-wrapper img {
        height: 500px;
        border-radius: 0;
    }
    .slider-text .main-title {
        font-size: 1.8rem;
    }
    .slider-text .description {
        font-size: 0.9rem;
    }



    
}

.site-footer {
    background-color: #6a4bc4;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
}

.site-footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.site-footer p, .site-footer a {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer hr {
    margin: 30px 0;
    opacity: 0.2;
}

@media(max-width:768px){
    .site-footer {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        text-align: center;
    }

    .site-footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* --- HAKKIMIZDA SAYFASI --- */

.about-page {
    margin-top: 120px;
}

.about-tag {
    color: #6f2cff;
    font-weight: 700;
    font-size: 18px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.about-intro {
    font-size: 17px;
    color: #555;
    max-width: 700px;
}

.about-img-big {
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Özellikler */
.about-feature {
    gap: 15px;
}

.about-icon {
    width: 55px;
    height: 55px;
    background: #f5eafe;
    color: #6f2cff;
    font-size: 26px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 700;
    font-size: 20px;
}

.feature-text {
    color: #666;
    margin-top: 5px;
}

/* Mobil uyum */
@media(max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    .about-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}


.hero {
    width: 100%;
    height: 45vh;
    background: url("../assets/images/bg.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-text h1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-section {
    height: 350px; /* Varsayılan yükseklik */
    background: url("assets/images/bg.jpg") center/cover no-repeat;
    position: relative;
}

/* --- Mobil için --- */
@media (max-width: 768px) {
    .hero-section {
        height: 220px !important; /* Daha kısa */
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 28px; /* Başlık küçülsün */
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* --- Küçük Telefonlar için --- */
@media (max-width: 480px) {
    .hero-section {
        height: 180px !important;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}


.vm-tabs {
    display: inline-flex;
    gap: 10px;
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 30px;
}

.vm-tab {
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

.vm-tab.active {
    background: #6f2cff;
    color: #fff;
}

.vm-content {
    display: none;
}

.vm-content.active {
    display: block;
}

.vm-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-text {
    font-size: 17px;
    line-height: 1.6;
}

.vm-list {
    margin-top: 15px;
    padding-left: 0;
}

.vm-list li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
}

.vm-img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.arac-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.arac-card {
    border-radius: 20px;
    transition: .3s;
}

.arac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


