/* ========== PREMIUM TASARIM - SARAYLI SEYAHAT V8 ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0D5CAB;
    --primary-dark: #083D73;
    --primary-light: #25A9E0;
    --secondary: #5CC8FF;
    --dark: #0F172A;
    --light: #F8FAFC;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --white: #FFFFFF;
    
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-img: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== LOADER ========== */
.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
    margin: 20px auto 0;
    animation: loaderLine 1.5s ease-in-out infinite;
}

@keyframes loaderLine {
    0% { width: 0; opacity: 0; }
    50% { width: 80px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 10001;
    transition: width 0.1s ease;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--light) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    font-size: 0.85rem;
}

.topbar,
.topbar .small {
    color: var(--gray) !important;
}

.topbar a {
    color: var(--dark) !important;
    opacity: 0.8;
    transition: var(--transition);
     text-decoration: none !important;
}

.topbar a:hover {
    color: var(--primary) !important;
    opacity: 1;
     text-decoration: none;
}

.topbar .text-primary {
    color: var(--primary) !important;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
}

.row {
    --bs-gutter-x: 1.8rem;
    --bs-gutter-y: 1.8rem;
}

section {
    padding: 60px 0;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    margin: 0;
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    white-space: nowrap;
}

.navbar-nav {
    gap: 4px;
    align-items: center;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    font-size: 0.9rem;
    padding: 8px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

/* Mobile Menu */
.navbar-collapse {
    padding: 20px;
    border-radius: 24px;
    background: var(--white);
    margin-top: 15px;
    box-shadow: var(--shadow-md);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    padding: 0.75rem 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* ========== HERO SLIDER ========== */
.hero {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
}

.hero-content {
    max-width: 700px;
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 22px;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow-premium);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.hero-floating-card i {
    font-size: 1.4rem;
    color: var(--primary-light);
}

.card-1 {
    right: 80px;
    top: 25%;
    animation-delay: 0s;
}

.card-2 {
    right: 120px;
    bottom: 20%;
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    background-size: 50%;
    transition: var(--transition);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* ========== ABOUT HOME ========== */
.about-home {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    height: auto;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 24px 28px;
    text-align: center;
    min-width: 170px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.about-experience h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.about-experience span {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.about-text {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
}

/* ========== STATS SECTION ========== */
.stats-section {
   margin-top: -60px;
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    border-radius: 0 0 40px 40px;
    padding: 60px 0;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(13,92,171,0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========== PREMIUM CARDS ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-glass);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

/* Service Cards */
.service-card {
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 169, 224, 0.25), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 92, 171, 0.1), rgba(37, 169, 224, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* About Cards (Neden Biz) */
.about-card {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.about-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Vehicle Cards */
.vehicle-card {
    overflow: hidden;
    padding: 0;
    height: 100%;
}

.vehicle-image {
    position: relative;
    overflow: hidden;
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-img);
}

.vehicle-card:hover img {
    transform: scale(1.08);
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.vehicle-features span {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
}

.vehicle-features span i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Reference Cards */
.references-section {
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
}

.reference-card {
    background: var(--white);
    backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.reference-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
}

.reference-card img {
    max-height: 50px;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.reference-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.reference-card h6 {
    font-size: 0.85rem;
    margin: 0;
    color: var(--dark);
}

/* ========== ONLINE SERVİS + CANLI TAKİP - DÜZELTİLDİ ========== */
.online-tracking-section {
   background: linear-gradient(135deg, #eef2f6, #ffffff);
}

.service-online-card,
.live-tracking-card {
    padding: 2.5rem;
    border-radius: 28px;
    height: 100%;
    transition: var(--transition);
}

.service-online-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.live-tracking-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.service-online-card:hover,
.live-tracking-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
    margin: 0;  /* margin-bottom kaldırıldı */
}

.service-online-card h4,
.live-tracking-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-online-card p,
.live-tracking-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature List - DÜZELTİLDİ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Butonlar */
.service-online-card .btn-light,
.live-tracking-card .btn-outline-light {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-online-card .btn-light {
    background: white;
    color: var(--primary);
    border: none;
}

.service-online-card .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.live-tracking-card .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.live-tracking-card .btn-outline-light:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    color: var(--dark);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Buttons */
.btn {
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:active::after {
    width: 200px;
    height: 200px;
}

/* ========== BACKGROUNDS ========== */
.bg-soft {
    background: var(--light);
}

/* ========== BANNER ========== */
.banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.banner .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.banner-wrapper {
    position: relative;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(13, 92, 171, 0.05));
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== FOOTER PREMIUM ========== */
footer {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-top: 3px solid var(--primary-light);
    padding: 60px 0 0;
    color: #94A3B8;
}

footer a {
    color: #94A3B8;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-light) !important;
    padding-left: 3px;
}

footer h6 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

footer h5 {
    letter-spacing: -0.5px;
    color: white !important;
}

/* Bottom Footer */
.bottom-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.footer-links a {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light) !important;
    padding-left: 0;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}



/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366, #20b859);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
     text-decoration: none !important;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
     text-decoration: none !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50% !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
}

.back-to-top i {
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    color: white;
}

/* ========== MOBILE CONTACT BAR ========== */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    display: none;
    z-index: 9998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 5px;
    text-align: center;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark);
}

.mobile-contact-item i {
    font-size: 1.3rem;
    margin: 0;
}

.mobile-contact-item span {
    font-size: 0.65rem;
    font-weight: 500;
}

.mobile-contact-item.primary {
    background: var(--primary);
    color: white;
}

.mobile-contact-item.dark {
    background: var(--dark);
    color: white;
}

.mobile-contact-item:active {
    transform: scale(0.96);
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .navbar .nav-link {
        margin: 0.3rem 0;
        padding: 8px 0;
    }
    
    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--primary);
        transform: none;
    }
    
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero-slide {
        min-height: 70vh;
        background-attachment: scroll !important;
    }
    
    .hero-content {
        text-align: center;
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
        letter-spacing: -1px;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }

  
   
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-experience {
        right: 10px;
        bottom: 10px;
        padding: 15px 18px;
        min-width: 130px;
    }
    
    .about-experience h3 {
        font-size: 1.8rem;
    }
    
    .about-experience span {
        font-size: 0.75rem;
    }
    
    .stats-section {
        margin-top: -40px;
    }
    
    .mobile-contact-bar {
        display: flex;
    }

        .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        bottom: 80px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 24px;
         text-decoration: none !important;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .reference-card {
        min-height: 110px;
        padding: 1rem;
    }
    
    /* Footer Mobile */
    footer {
        text-align: center;
    }
    
    .footer-links {
        margin-top: 10px;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .bottom-footer .row > div {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .vehicle-features {
        gap: 8px;
    }
    
    .vehicle-features span {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .reference-card {
        min-height: 100px;
    }
    
    .reference-card h6 {
        font-size: 0.7rem;
    }
    
    .about-feature {
        font-size: 0.85rem;
    }
}

/* ========== HEADER / NAVBAR CUSTOM ========== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    letter-spacing: -0.3px;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Dropdown Custom */
.dropdown-custom {
    position: relative;
}

.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    text-decoration: none;
    padding: 8px 0;
}

.dropdown-toggle-custom i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-custom:hover .dropdown-toggle-custom i {
    transform: rotate(180deg);
}

.dropdown-custom:hover .dropdown-toggle-custom {
    color: var(--primary);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.dropdown-menu-custom li a:hover {
    background: var(--primary);
    color: white;
    padding-left: 25px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-franchise {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-franchise:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link,
    .dropdown-toggle-custom {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown-custom.active .dropdown-menu-custom {
        display: block;
    }
    
    .dropdown-toggle-custom i {
        float: right;
        margin-top: 5px;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .btn-franchise {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 35px;
    }
    
    .btn-franchise {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* ========== REFERANS SLIDER ========== */
.references-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.references-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.references-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.reference-item {
    flex: 0 0 calc(25% - 22.5px);
    min-width: calc(25% - 22.5px);
}

.reference-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-glass);
}

.reference-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.reference-card img {
    max-height: 90px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.reference-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.reference-card h6 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: var(--dark);
    font-weight: 700;
}

.reference-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    font-style: italic;
}

.references-prev,
.references-next {
    width: 56px;
    height: 56px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.references-prev:hover,
.references-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.references-prev i,
.references-next i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .reference-item {
        flex: 0 0 calc(33.33% - 20px);
        min-width: calc(33.33% - 20px);
    }
    
    .reference-card {
        min-height: 200px;
    }
    
    .reference-card img {
        max-height: 75px;
    }
}

@media (max-width: 768px) {
 .service-online-card,
    .live-tracking-card {
        padding: 1.8rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .service-online-card h4,
    .live-tracking-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }
    
    .service-online-card .btn-light,
    .live-tracking-card .btn-outline-light {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .references-slider-wrapper {
        gap: 12px;
    }
    
    .references-prev,
    .references-next {
        width: 48px;
        height: 48px;
    }
    
    .references-prev i,
    .references-next i {
        font-size: 1.1rem;
    }
    
    .reference-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .reference-card {
        padding: 2rem 1rem;
        min-height: 180px;
    }
    
    .reference-card img {
        max-height: 65px;
        margin-bottom: 15px;
    }
    
    .reference-card h6 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reference-item {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }
    
    .reference-card {
        min-height: 160px;
    }
}

/* Online Servis Butonları */
.btn-online-service,
.btn-tracking {
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.btn-online-service {
    background: linear-gradient(135deg, #0D5CAB, #083D73);
    color: white;
}

.btn-online-service:hover {
    background: linear-gradient(135deg, #083D73, #0D5CAB);
    transform: translateY(-2px);
    color: white;
}

.btn-tracking {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-tracking:hover {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 1200px) {
    .btn-online-service,
    .btn-tracking {
        display: none !important;
    }
}


.about-home,
.bg-soft,
.section-padding,
.references-section {
    position: relative;
}



/* NEDEN SARAYLI SEYAHAT - PREMIUM VERSİYON */
.why-us-premium {
    background: linear-gradient(135deg, #0D5CAB, #083D73);
    position: relative;
    overflow: hidden;
}

.why-us-premium .section-title h2,
.why-us-premium .section-title p {
    color: white;
}

.why-us-premium .section-title h2::after {
    background: white;
}

.text-gradient {
    background: linear-gradient(135deg, #fff, #5CC8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-us-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-us-premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.why-us-premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.premium-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.premium-card-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.premium-card-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}

.why-us-stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.why-us-stats .stat-item {
    flex: 1;
}

.why-us-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.why-us-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .why-us-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========== NEDEN SARAYLI SEYAHAT? - PREMIUM VERSİYON ========== */
.why-us-premium {
    background: linear-gradient(135deg, #0D5CAB, #083D73);
    position: relative;
    overflow: hidden;
}

.why-us-premium .section-title h2,
.why-us-premium .section-title p {
    color: white;
}

.why-us-premium .section-title h2::after {
    background: white;
}

.text-gradient {
    background: linear-gradient(135deg, #fff, #5CC8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-us-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-us-premium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.why-us-premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255,255,255,0.3);
}

.premium-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-card-icon i {
    font-size: 1.6rem;
    color: white;
}

.premium-card-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.premium-card-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* ========== İSTATİSTİK ALANI - PREMIUM ========== */
.stats-premium {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-premium-item {
    padding: 20px;
}

.stats-premium-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stats-premium-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.stats-premium-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-us-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-premium-card {
        padding: 18px;
    }
    
    .premium-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .premium-card-icon i {
        font-size: 1.3rem;
    }
    
    .stats-premium-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-premium-number {
        font-size: 2rem;
    }
}

