:root {
    --primary-color: #050b14;
    /* Deepest Navy */
    --secondary-color: #cca43b;
    /* Premium Gold */
    --secondary-hover: #e5c55c;
    --text-color: #ffffff;
    /* Pure white */
    --light-bg: #0b1626;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Gradient Text */
.text-gradient-gold {
    background: linear-gradient(to right, #cca43b, #f9f295, #cca43b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Navbar */
.navbar {
    background-color: rgba(5, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, rgba(5, 11, 20, 0.6), rgba(5, 11, 20, 0.9)), url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

/* Form Styles */
/* Bu bloğu kaldırıyorum çünkü aşağıda 'Form Inputs in Dark Theme' kısmında eziliyor ve karışıklık yaratıyor */
/*
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(204, 164, 59, 0.25);
    color: white;
}
*/

/* Eski placeholder kuralları (koyu zemin için olanlar) artık gereksiz, çünkü inputlar açık renk oldu */
/*
.form-control::placeholder,
.form-select::placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.75);
}
*/

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, var(--secondary-color), #ebd27b);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 164, 59, 0.5);
    color: var(--primary-color);
}

.btn-outline-gold {
    background: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Cards */
.feature-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    height: 650px !important; /* Fixed height with priority */
    position: relative;
    background-color: var(--light-bg);
}

/* Fix for carousel hopping issue - Comprehensive Fix */
.destination-card .carousel,
.destination-card .carousel-inner,
.destination-card .carousel-item {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
}

/* Ensure the link wrapping the image fills the container */
.destination-card a.glightbox {
    display: block;
    height: 100% !important;
    width: 100% !important;
}

.destination-card img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover; /* Ensures aspect ratio is preserved while filling space */
    object-position: center;
    transition: transform 0.5s;
    min-height: 100%;
}

.destination-card:hover img {
    transform: scale(1.1);
}

/* Gradient Overlay - Updated for centered text visibility */
.gradient-overlay {
    background: rgba(0, 0, 0, 0.4); /* Uniform dark overlay for better contrast in center */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: background 0.3s;
}

.destination-card:hover .gradient-overlay {
    background: rgba(0, 0, 0, 0.5); /* Darken slightly on hover */
}
.fleet-image-wrapper {
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 70%, transparent 100%);
    /* Arka plana hafif bir ışık efekti ekleyerek transparan araçların görünmesini sağlar */
}

.fleet-image-wrapper img {
    opacity: 1 !important;
    z-index: 2;
    position: relative;
}


/* Table */
.table-custom {
    color: var(--text-color);
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.table-custom thead {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.table-custom tbody tr {
    transition: background 0.3s;
}

.table-custom tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    background-color: #02060b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* Text Visibility Improvements */
.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Footer & Dark Section Text */
footer .text-muted,
.glass-card .text-muted,
.hero-content .text-muted {
    color: #b0b3b8 !important;
}

footer a.text-muted:hover {
    color: var(--secondary-color) !important;
}

/* Form Inputs in Dark Theme */
.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #333;
}

.form-control::placeholder,
.form-select::placeholder {
    color: #666; /* Daha koyu placeholder rengi */
    opacity: 1; /* Firefox için gerekli */
}

.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
    color: #666;
}

.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
    color: #666;
}

.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
    color: #666;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(204, 164, 59, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .glass-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Custom Utilities */
.pointer-events-none {
    pointer-events: none;
}
.pointer-events-auto {
    pointer-events: auto;
}

/* Gradient Overlay */
/* Moved up to accompany destination-card styles */

