/* ========== VIP TRANSFER - ANA CSS (KOYU LACİVERT + BEYAZ YAZI) ========== */
:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --success: #06d6a0;
    --danger: #ef476f;
    --warning: #ffd166;
    --dark: #0a0e27;
    --light: #1a1f3a;
    --gray: #a0a4b8;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e27;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== TİPOGRAFİ - TÜM YAZILAR BEYAZ ========== */
h1, h2, h3, h4, h5, h6, p, span, li, a, label, .text-muted, .form-label,
.hero-subtitle, .slider-title, .slider-subtitle, .feature-card p, .process-desc,
.arac-desc, .price-label, .price-value small, .currency-item, .feature-tag,
.tur-desc, .tur-category, .blog-excerpt, .blog-meta, .stat-label,
.footer a, .footer p, .copyright, .card-text, .nav-link, .breadcrumb-item,
.alert, .modal-content, .offcanvas, .table, .form-control, .form-select {
    color: #ffffff !important;
}

/* Input placeholder'lar */
::placeholder {
    color: rgba(255,255,255,0.6) !important;
}

/* Linkler */
a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* ========== BUTONLAR ========== */
.btn, .search-btn, .book-btn, .slider-btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #05b384);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #d34567);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning), #ffb347);
    color: var(--dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========== KARTLAR ========== */
.card, .arac-card, .tur-card, .blog-card, .feature-card, .process-card {
    background: #1a1f3a;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.card:hover, .arac-card:hover, .tur-card:hover, .blog-card:hover, .feature-card:hover, .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

.card-body, .arac-content, .tur-content, .blog-content {
    padding: 25px;
}

.card-title, .arac-title, .tur-title, .blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white !important;
}

.card-text, .arac-desc, .tur-desc, .blog-excerpt {
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 20px;
}

/* ========== GRID SİSTEMLERİ ========== */
.arac-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.tur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========== FORMLAR ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: white !important;
    font-size: 0.9rem;
}

.form-control, .search-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    color: white;
}

.form-control:focus, .search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.2);
    background: rgba(255,255,255,0.1);
}

.form-control::placeholder, .search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
}

.form-select option {
    background: #1a1f3a;
    color: white;
}

/* ========== SLIDER ========== */
.main-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}
.slider-slide.active {
    opacity: 1;
    z-index: 1;
}
.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-align: center;
}
.slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
}
.slider-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.1s both;
}
.slider-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== ALERTLER ========== */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(6, 214, 160, 0.2);
    border: 1px solid var(--success);
    color: #06d6a0;
}

.alert-danger {
    background: rgba(239, 71, 111, 0.2);
    border: 1px solid var(--danger);
    color: #ef476f;
}

.alert-warning {
    background: rgba(255, 209, 102, 0.2);
    border: 1px solid var(--warning);
    color: #ffd166;
}

.alert-info {
    background: rgba(67, 97, 238, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* ========== TABLO ========== */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.table th {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    color: white;
}

.table tr:hover {
    background: rgba(255,255,255,0.03);
}

/* ========== NAVBAR ========== */
.navbar {
    background: #0a0e27 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .nav-link {
    color: white !important;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    background: #1a1f3a !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--primary) !important;
}

/* ========== FOOTER ========== */
footer {
    background: #0a0e27 !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== STATS ========== */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    color: white;
    padding: 80px 0;
}

/* ========== YARDIMCI SINIFLAR ========== */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-white { color: white !important; }
.text-muted { color: rgba(255,255,255,0.6) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-success { background: var(--success) !important; }
.bg-danger { background: var(--danger) !important; }
.bg-warning { background: var(--warning) !important; }
.bg-light { background: rgba(255,255,255,0.1) !important; }
.bg-dark { background: #0a0e27 !important; }

.text-center { text-align: center !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }

.d-flex { display: flex !important; }
.d-none { display: none !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.gap-2 { gap: 10px !important; }
.gap-3 { gap: 15px !important; }

.w-100 { width: 100% !important; }
.rounded { border-radius: 10px !important; }
.rounded-lg { border-radius: 20px !important; }
.rounded-pill { border-radius: 50px !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .arac-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .arac-grid { grid-template-columns: repeat(2, 1fr); }
    .tur-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding-left: 15px; padding-right: 15px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .arac-grid { grid-template-columns: 1fr !important; }
    .tur-grid { grid-template-columns: 1fr !important; }
    .process-grid { grid-template-columns: 1fr !important; }
    
    .slider-title { font-size: 2rem; }
    .slider-subtitle { font-size: 1rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 18px; }
    
    .btn { padding: 10px 20px; }
    .card-body, .arac-content, .tur-content { padding: 20px; }
}

/* ========== CHAT BUTONLARI ========== */
.chat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.chat-btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.phone-btn {
    background: #06d6a0;
    color: white;
}
.wa-btn {
    background: #25d366;
    color: white;
}
.link-btn {
    background: var(--primary);
    color: white;
}
.chat-btn:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== GOOGLE MAPS AUTOCOMPLETE DROPDOWN DÜZELTMESİ ========== */
.pac-container {
    background: #1a1f3a !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    margin-top: 5px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    z-index: 9999 !important;
}

.pac-item {
    padding: 10px 15px !important;
    border-top: none !important;
    cursor: pointer !important;
    color: white !important;
    font-size: 14px !important;
}

.pac-item:hover {
    background: rgba(255,255,255,0.1) !important;
}

.pac-item-query {
    color: white !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.pac-matched {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.pac-icon {
    display: none !important;
}

.pac-item-selected {
    background: rgba(67, 97, 238, 0.2) !important;
}

.pac-item-selected .pac-item-query {
    color: var(--primary) !important;
}

/* Autocomplete input için ekstra */
.pac-target-input {
    color: white !important;
}

/* Mobil için */
@media (max-width: 768px) {
    .pac-container {
        width: calc(100% - 30px) !important;
        left: 15px !important;
        right: 15px !important;
        margin: 0 auto !important;
    }
}