html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


/* Air Datepicker Custom Styles */

.datepicker-input {
    cursor: pointer !important;
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    padding: 0.625rem 1rem !important;
    width: 100% !important;
    font-size: 1rem !important;
    transition: all 0.2s !important;
    position: relative !important;
}

.datepicker-input:focus {
    outline: none !important;
    border-color: #000000 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

.datepicker {
    font-family: inherit !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e5e7eb !important;
    overflow: hidden !important;
}

.datepicker--nav {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%) !important;
    border-bottom: none !important;
    padding: 1rem !important;
}

.datepicker--nav-title {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
}

.datepicker--nav-action {
    color: #ffffff !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s !important;
}

.datepicker--nav-action:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.datepicker--nav-action path {
    fill: #ffffff !important;
}

.datepicker--days-names {
    background-color: #f9fafb !important;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.datepicker--day-name {
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
}

.datepicker--cells {
    padding: 0.5rem !important;
}

.datepicker--cell {
    border-radius: 0.5rem !important;
    color: #1f2937 !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    height: 2.5rem !important;
    line-height: 2.5rem !important;
}

.datepicker--cell:hover {
    background-color: #f3f4f6 !important;
    color: #000000 !important;
}

.datepicker--cell.-selected-,
.datepicker--cell.-current- {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.datepicker--cell.-selected-:hover {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
}

.datepicker--cell.-current- {
    border: 2px solid #000000 !important;
}

.datepicker--cell.-disabled- {
    color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.datepicker--cell.-disabled-:hover {
    background-color: transparent !important;
}

.datepicker--cell.-other-month- {
    color: #9ca3af !important;
    opacity: 0.5 !important;
}


/* Dark mode support */

@media (prefers-color-scheme: dark) {
    .datepicker-input {
        background-color: #1f2937 !important;
        color: #f9fafb !important;
        border-color: #374151 !important;
    }
    .datepicker {
        background-color: #1f2937 !important;
        border-color: #374151 !important;
    }
    .datepicker--days-names {
        background-color: #111827 !important;
        border-color: #374151 !important;
    }
    .datepicker--day-name {
        color: #9ca3af !important;
    }
    .datepicker--cell {
        color: #f9fafb !important;
    }
    .datepicker--cell:hover {
        background-color: #374151 !important;
    }
    .datepicker--cell.-other-month- {
        color: #6b7280 !important;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
    text-align: start;
}


/* General input field styles - Force white background and dark text */

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
textarea,
select {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #d1d5db !important;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]):focus,
textarea:focus,
select:focus {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #6b7280 !important;
    outline: none !important;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"])::placeholder,
textarea::placeholder {
    color: #9ca3af !important;
}


/* Tailwind input classes */

input.border-gray-300,
textarea.border-gray-300 {
    background-color: #ffffff !important;
    color: #1f2937 !important;
}

input.border-gray-300:focus,
textarea.border-gray-300:focus {
    background-color: #ffffff !important;
    color: #1f2937 !important;
}


/* Dark mode styles for form controls */

.dark .form-control {
    background-color: #1f2937 !important;
    color: #f9fafb !important;
    border-color: #374151 !important;
}

.dark .form-control:focus {
    background-color: #1f2937 !important;
    color: #f9fafb !important;
    border-color: #6b7280 !important;
}

.dark .form-control::placeholder {
    color: #9ca3af !important;
}


/* Dark mode for general inputs */

.dark input[type="text"],
.dark input[type="email"],
.dark input[type="tel"],
.dark input[type="password"],
.dark input[type="number"],
.dark input[type="date"],
.dark input[type="time"],
.dark input[type="search"],
.dark input[type="url"],
.dark textarea,
.dark select {
    background-color: #1f2937 !important;
    color: #f9fafb !important;
    border-color: #374151 !important;
}

.dark input[type="text"]:focus,
.dark input[type="email"]:focus,
.dark input[type="tel"]:focus,
.dark input[type="password"]:focus,
.dark input[type="number"]:focus,
.dark input[type="date"]:focus,
.dark input[type="time"]:focus,
.dark input[type="search"]:focus,
.dark input[type="url"]:focus,
.dark textarea:focus,
.dark select:focus {
    background-color: #1f2937 !important;
    color: #f9fafb !important;
    border-color: #6b7280 !important;
}

.dark input[type="text"]::placeholder,
.dark input[type="email"]::placeholder,
.dark input[type="tel"]::placeholder,
.dark input[type="password"]::placeholder,
.dark input[type="number"]::placeholder,
.dark input[type="date"]::placeholder,
.dark input[type="time"]::placeholder,
.dark input[type="search"]::placeholder,
.dark input[type="url"]::placeholder,
.dark textarea::placeholder {
    color: #9ca3af !important;
}


/* ============================================
   MODERN ANIMATIONS & UTILITIES
   ============================================ */


/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}


/* Fade-in animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}


/* Animation utility classes */

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


/* Stagger animations */

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}


/* Hover effects */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


/* Glassmorphism effect */

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Modern card styles */

.modern-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.dark .modern-card {
    background: #1f2937;
    border: 1px solid #374151;
}


/* Gradient backgrounds */

.gradient-primary {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}


/* Modern button styles */

.btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Loading skeleton */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.dark .skeleton {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
}


/* Smooth transitions */

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-fast {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-slow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Text animations */

.text-gradient {
    background: linear-gradient(135deg, #000000 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Image effects */

.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}


/* Form input modern styles */

.input-modern {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.input-modern:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.input-modern:hover {
    border-color: #9ca3af;
}


/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Parallax effect */

.parallax {
    will-change: transform;
}


/* Modern shadows */

.shadow-modern {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-modern-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


/* Backdrop blur */

.backdrop-blur-modern {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Modern border radius */

.rounded-modern {
    border-radius: 1rem;
}

.rounded-modern-lg {
    border-radius: 1.5rem;
}


/* Performance optimizations */

.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-accelerated {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}


/* ============================================
   VISIBILITY & CONTRAST FIXES
   ============================================ */


/* Icon visibility fixes */

svg {
    display: inline-block;
    vertical-align: middle;
}

svg[stroke="currentColor"] {
    stroke-width: 2;
}


/* Ensure icons are visible on light backgrounds */

.text-gray-400 svg,
.text-gray-500 svg,
.text-gray-600 svg {
    color: #6b7280 !important;
    stroke: #6b7280 !important;
}

.text-gray-700 svg {
    color: #374151 !important;
    stroke: #374151 !important;
}

.text-gray-900 svg {
    color: #111827 !important;
    stroke: #111827 !important;
}


/* Button contrast fixes */

.bg-gray-200,
.bg-gray-100 {
    border: 1px solid #d1d5db !important;
}

.bg-gray-200:hover,
.bg-gray-100:hover {
    border-color: #9ca3af !important;
    background-color: #e5e7eb !important;
}


/* Ensure buttons have proper contrast */

button[class*="bg-gray"],
a[class*="bg-gray"] {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}


/* Image visibility fixes */

img {
    display: block;
    max-width: 100%;
    height: auto;
}

img[src=""],
img:not([src]) {
    opacity: 0;
    visibility: hidden;
}


/* Ensure placeholder images are visible */

.placeholder-car,
[alt*="Fotoğrafı Yok"],
[alt*="placeholder"] {
    opacity: 0.3 !important;
    background-color: #f3f4f6 !important;
}


/* Base64 image fixes */

img[src^="data:image"] {
    display: block !important;
    opacity: 1 !important;
}


/* Icon color fixes for feature badges */

.bg-gray-100 svg,
.bg-gray-50 svg {
    color: #374151 !important;
    stroke: #374151 !important;
    fill: none !important;
}


/* Button text contrast */

.bg-gray-200,
.bg-gray-100 {
    color: #1f2937 !important;
}

.bg-gray-200:hover,
.bg-gray-100:hover {
    color: #111827 !important;
}


/* Ensure white buttons are visible */

.bg-white {
    border: 1px solid #e5e7eb !important;
}

.bg-white:hover {
    border-color: #d1d5db !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}


/* Icon in buttons */

button svg,
a svg,
.btn svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}


/* Feature icon badges - ensure visibility */

.flex.items-center svg {
    color: #374151 !important;
    stroke: #374151 !important;
}


/* Ensure consistent icon colors in feature badges */

.bg-gray-100 svg,
.bg-gray-50 svg {
    color: #374151 !important;
    stroke: #374151 !important;
    fill: none !important;
}

.bg-gray-100 svg path,
.bg-gray-50 svg path {
    stroke: #374151 !important;
    fill: none !important;
}


/* Button text alignment */

button,
.btn-modern,
a[class*="btn"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

button span,
.btn-modern span {
    display: inline-block;
}


/* Ensure icon colors are consistent in feature badges */

.bg-gray-100 svg,
.bg-gray-50 svg {
    color: #374151 !important;
}

.bg-gray-100 svg[stroke="currentColor"],
.bg-gray-50 svg[stroke="currentColor"] {
    color: #374151 !important;
    stroke: #374151 !important;
}

.bg-gray-100 svg path,
.bg-gray-50 svg path {
    stroke: #374151 !important;
}

.bg-gray-100 svg[style*="color"],
.bg-gray-50 svg[style*="color"] {
    color: #374151 !important;
}


/* Force consistent icon color in feature boxes */

.flex.items-center.bg-gray-100 svg,
.flex.items-center.bg-gray-50 svg {
    color: #374151 !important;
    stroke: #374151 !important;
}


/* Dark mode icon fixes */

.dark svg[stroke="currentColor"] {
    stroke: currentColor;
}

.dark .text-gray-400 svg,
.dark .text-gray-500 svg,
.dark .text-gray-600 svg {
    color: #9ca3af !important;
    stroke: #9ca3af !important;
}

.dark .text-gray-700 svg {
    color: #d1d5db !important;
    stroke: #d1d5db !important;
}

.dark .text-gray-900 svg {
    color: #f9fafb !important;
    stroke: #f9fafb !important;
}


/* Mobile menu button - hide on desktop */

@media (min-width: 768px) {
    #mobileMenuButton {
        display: none !important;
    }
    #mobileMenu,
    #mobileMenuOverlay {
        display: none !important;
    }
}


/* Show mobile menu button only on mobile */

@media (max-width: 767px) {
    #mobileMenuButton {
        display: block !important;
    }
}


/* Force button visibility - prevent white buttons on white backgrounds */

button,
a[class*="btn"],
a[class*="button"] {
    min-height: 44px;
}


/* Ensure all buttons have visible backgrounds */

button:not([class*="bg-"]):not([class*="gradient"]),
a:not([class*="bg-"]):not([class*="gradient"])[class*="btn"],
a:not([class*="bg-"]):not([class*="gradient"])[class*="button"] {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
}


/* Fix white buttons on white backgrounds */

.bg-white.text-white,
.text-white.bg-white,
button.bg-white,
a.bg-white {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
}


/* Ensure gradient buttons are always visible */

.bg-gradient-primary {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%) !important;
    color: #ffffff !important;
}

.bg-gradient-primary,
.bg-gradient-primary *,
.bg-gradient-primary span,
.bg-gradient-primary svg {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.bg-gradient-primary svg {
    stroke: #ffffff !important;
}

.bg-gradient-primary:hover {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
    color: #ffffff !important;
}

.bg-gradient-primary:hover *,
.bg-gradient-primary:hover span,
.bg-gradient-primary:hover svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}


/* Fix any button without explicit background */

a[href]:not([class*="bg-"]):not([class*="text-"]) {
    color: #000000 !important;
}


/* Ensure all action buttons have proper contrast */

a[asp-action="Details"],
a[href*="/Details"],
a[href*="/details"],
a[href*="/Create"],
a[href*="/create"] {
    background-color: #000000 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    border: none !important;
}

a[asp-action="Details"] span,
a[asp-action="Details"] svg,
a[href*="/Details"] span,
a[href*="/Details"] svg,
a[href*="/details"] span,
a[href*="/details"] svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

a[asp-action="Details"]:hover,
a[href*="/Details"]:hover,
a[href*="/details"]:hover,
a[href*="/Create"]:hover,
a[href*="/create"]:hover {
    background-color: #1f2937 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


/* Force visibility for all buttons without explicit background */

button:not([class*="bg-black"]):not([class*="bg-gray"]):not([class*="bg-red"]):not([class*="bg-green"]):not([class*="bg-blue"]):not([class*="bg-yellow"]):not([class*="gradient"]),
a:not([class*="bg-black"]):not([class*="bg-gray"]):not([class*="bg-red"]):not([class*="bg-green"]):not([class*="bg-blue"]):not([class*="bg-yellow"]):not([class*="gradient"])[class*="btn"],
a:not([class*="bg-black"]):not([class*="bg-gray"]):not([class*="bg-red"]):not([class*="bg-green"]):not([class*="bg-blue"]):not([class*="bg-yellow"]):not([class*="gradient"])[class*="button"] {
    background-color: #000000 !important;
    color: #ffffff !important;
}


/* ============================================
   MODERN HERO SLIDER STYLES
   ============================================ */

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    }
}

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    max-width: 560px;
    padding: 0 2rem;
    padding-bottom: 5rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-right: auto;
    margin-left: 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-spacing: 0.08em;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s linear infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-title br {
    display: block;
    margin-top: 0.2em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.65;
    word-spacing: 0.06em;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Hero buton: acik okunakli - beyaz yazi, kontrast arka plan */

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    background: #ffffff !important;
    color: #111111 !important;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 15;
    word-spacing: 0.05em;
    -webkit-text-fill-color: #111111 !important;
}

.hero-cta span,
.hero-cta svg {
    color: #111111 !important;
    fill: none;
    stroke: #111111 !important;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    background: #f0f0f0 !important;
    color: #000000 !important;
    border-color: #e5e5e5;
    -webkit-text-fill-color: #000000 !important;
}

.hero-cta:hover span,
.hero-cta:hover svg {
    color: #000000 !important;
    stroke: #000000 !important;
}

.hero-slider-nav {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.hero-slider-dot:hover,
.hero-slider-dot.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: #ffffff;
}

.hero-slider-dot.active {
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}


/* Oklar resmin uzerinde minimal - kenarda, hover'da belirgin */

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #ffffff !important;
    -webkit-tap-highlight-color: transparent;
}

.hero-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.75) !important;
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-arrow:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.hero-slider-arrow svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
    width: 1.25rem;
    height: 1.25rem;
}

.hero-slider-arrow.prev {
    left: 0.75rem;
}

.hero-slider-arrow.next {
    right: 0.75rem;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 7s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 8s;
}


/* Floating Search Box */

.floating-search {
    position: relative;
    z-index: 100;
    margin-top: -100px;
    margin-bottom: 4rem;
}

.search-box-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 85vh;
        max-height: 90vh;
    }
    .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        align-items: center;
        padding: 2rem 1rem 6rem;
        gap: 0.75rem;
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.5rem;
        word-spacing: 0.06em;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        word-spacing: 0.05em;
    }
    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    .hero-slider-arrow {
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    .hero-slider-arrow svg {
        width: 1rem;
        height: 1rem;
    }
    .hero-slider-arrow.prev {
        left: 0.5rem;
    }
    .hero-slider-arrow.next {
        right: 0.5rem;
    }
    .hero-slider-nav {
        bottom: 1rem;
    }
    .floating-search {
        margin-top: 0;
        padding-top: 2rem;
    }
    .search-box-modern {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 0.75rem 5.5rem;
    }
    .hero-title br {
        display: block;
        margin-top: 0.2em;
    }
}

border: 1px solid #000000 !important;

}