/* ===========================
   Cesber Turizm - Custom CSS
   Brand: #2D3891 (Navy Blue) | #F58615 (Orange)
   =========================== */

/* Navigation Links */
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
}
.nav-link:hover {
    color: #F58615;
    background-color: #FFF7ED;
}
.nav-active {
    color: #2D3891 !important;
    background-color: #ECEDF8;
    font-weight: 600;
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1E2A6B 0%, #2D3891 50%, #3A47A8 100%);
}

/* Section Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effect */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(45, 56, 145, 0.12);
    border-color: #F58615;
}

/* Icon Container */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.service-card:hover .icon-box {
    transform: scale(1.1);
}

/* Vehicle Card */
.vehicle-card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.vehicle-card img {
    transition: transform 0.5s ease;
}
.vehicle-card:hover img {
    transform: scale(1.05);
}

/* Stat Counter */
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F58615, #E0760E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Pulse Animation for CTA */
@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 134, 21, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(245, 134, 21, 0); }
}
.pulse-cta {
    animation: pulse-soft 2s infinite;
}

/* Hero Slider */
.hero-slide { will-change: opacity; }
.hero-dot.active {
    background: rgba(255, 255, 255, 0.8) !important;
    width: 2rem;
}

/* Floating Badge Animation */
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-float-badge {
    animation: hero-float 4s ease-in-out infinite;
}

/* Feature Badge */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #FFF7ED;
    color: #F58615;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c5d1db;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2D3891;
}

/* Admin Sidebar */
.admin-sidebar {
    background: linear-gradient(180deg, #2D3891 0%, #1E2A6B 100%);
    min-height: 100vh;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #9CA3AF;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.admin-nav-link:hover,
.admin-nav-active {
    background: rgba(245, 134, 21, 0.15);
    color: #F58615;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E2A6B 0%, #2D3891 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 134, 21, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
