/* Titan Folio Inspired Theme - Dark Gradient with Blue Accents */

:root {
    --primary-bg: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    --secondary-bg: rgba(15, 20, 25, 0.8);
    --accent-blue: #00d9ff;
    --accent-blue-dark: #0099cc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
    background-color: #0a0e27;
    /* Prevent white flash */
    /* Smooth scroll performans sorunu yaratabiliyor */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    /* Sabit arka plan - beyazlık önleme */
    background-image: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    background-attachment: fixed;
    /* Scroll sırasında sabit kal */
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    /* GPU hızlandırma */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 153, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    will-change: auto;
    transform: translateZ(0);
    /* GPU hızlandırma */
    backface-visibility: hidden;
}

/* Navigation */
header {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar {
    background: rgba(10, 14, 39, 0.95) !important;
    /* Daha opak arka plan - blur yerine */
    backdrop-filter: blur(5px);
    /* Blur miktarını azalt */
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
    overflow: visible !important;
    transform: translateZ(0);
    /* GPU hızlandırma */
    will-change: transform;
}

.navbar-collapse {
    overflow: visible !important;
}

.navbar-nav {
    overflow: visible !important;
    flex-wrap: nowrap !important;
}

.navbar .container-fluid {
    overflow: visible !important;
}

.navbar-brand {
    color: var(--text-primary) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

/* Logo Container ve Animasyonlar */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 180px;
    height: 180px;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: -40px;
    margin-bottom: -40px;
}

.animated-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 217, 255, 0.3));
    animation: none;
    /* Animasyonu kaldır - performans için */
    transition: transform 0.2s ease;
    image-rendering: auto;
    border-radius: 20px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.animated-logo:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.6));
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Performans optimizasyonları - Animasyonları optimize et */
@media (prefers-reduced-motion: reduce) {

    .animated-logo,
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Will-change özellikleri performans için */
.animated-logo {
    will-change: transform;
}

.carousel-item img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Custom Carousel Controls - Yellow Arrows */
/* Custom Carousel Controls - Dark Glassy Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1050;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1 !important;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: none;
    /* Keep white icons */
}

/* Responsive Captions */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 20% !important;
        padding-bottom: 0;
    }

    .carousel-caption h1 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .carousel-caption p {
        font-size: 1rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px !important;
        height: 45px !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 1 !important;
        z-index: 9999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .carousel-control-prev {
        left: 10px !important;
    }

    .carousel-control-next {
        right: 10px !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes logoGlow {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }

    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    margin: 0 1rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    font-size: 1.25rem;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
    background: var(--glass-bg);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(15, 20, 35, 0.9);
    /* Daha opak - blur azaltıldı */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform: translateZ(0);
}

/* Randevu Kartı - Glass Card Stili (BEYAZ DEĞİL!) */
.randevu-card {
    background: rgba(255, 255, 255, 0.05) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
}

/* BEYAZ ARKA PLANI KESINLIKLE KALDIR */
.randevu-card[style*="background: white"],
.randevu-card[style*="background: #fff"],
.randevu-card[style*="background: #ffffff"],
.randevu-card[style*="background-color: white"],
.randevu-card[style*="background-color: #fff"],
.randevu-card[style*="background-color: #ffffff"] {
    background: rgba(255, 255, 255, 0.05) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Randevu kartı içindeki TÜM elemanlar için beyaz renk */
.randevu-card *,
.randevu-card p,
.randevu-card div,
.randevu-card span:not(.badge):not(.text-danger):not(.spinner-border),
.randevu-card label,
.randevu-card .form-label {
    color: var(--text-primary) !important;
}

/* Input ve form elemanları - yarı saydam */
.randevu-card input,
.randevu-card select,
.randevu-card textarea,
.randevu-card .form-control,
.randevu-card .form-select,
.randevu-card .date-input {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--glass-border) !important;
}

.randevu-card input::placeholder,
.randevu-card textarea::placeholder {
    color: var(--text-secondary) !important;
    opacity: 1 !important;
}

.randevu-card select option {
    color: var(--text-primary) !important;
    background: rgba(26, 31, 58, 0.95) !important;
}

.glass-card:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
    border-color: var(--accent-blue);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
    background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue));
}

.btn-outline-primary {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ee5a6f);
    border: none;
}

/* Forms */
.form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Tables - Dark Theme */
.table {
    color: #ffffff !important;
    background: transparent !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
}

.table thead {
    background: rgba(0, 217, 255, 0.2) !important;
}

.table thead th {
    color: #ffffff !important;
    font-weight: 600 !important;
    border-bottom: 2px solid rgba(0, 217, 255, 0.4) !important;
    padding: 1rem !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    background: rgba(0, 217, 255, 0.2) !important;
}

.table tbody {
    background: transparent !important;
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.table tbody tr:last-child {
    border-bottom: none !important;
}

.table tbody tr:hover {
    background: rgba(0, 217, 255, 0.15) !important;
}

.table tbody td {
    color: #ffffff !important;
    background: transparent !important;
    padding: 1rem !important;
    vertical-align: middle !important;
    border: none !important;
}

.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: transparent !important;
}

/* Table inside glass-card */
.glass-card .table {
    background: transparent !important;
    color: #ffffff !important;
}

.glass-card .table thead th {
    color: #ffffff !important;
    background: rgba(0, 217, 255, 0.2) !important;
}

.glass-card .table tbody td {
    color: #ffffff !important;
    background: transparent !important;
}

/* Admin panel table container - removed duplicate, handled in admin.css */

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(255, 71, 87, 0.2);
    color: #ff6b7d;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.alert-success {
    background: rgba(46, 213, 115, 0.2);
    color: #6bcf89;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    /* Logo Mobil */
    .logo-container {
        width: 100px !important;
        height: 100px !important;
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .navbar-brand .text-gradient {
        font-size: 0.9rem !important;
        display: none;
        /* Mobilde logo yanındaki yazıyı gizle */
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 1rem !important;
        margin: 0.3rem 0 !important;
        padding: 0.5rem 1rem !important;
    }

    /* Hero Section Mobil - Zaten yukarıda tanımlı */

    .hero-text-content h1 {
        font-size: 1.75rem !important;
    }

    .hero-text-content h2 {
        font-size: 1rem !important;
    }

    .hero-text-content .lead {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    /* İstatistikler Mobil */
    .display-4 {
        font-size: 2rem !important;
    }

    /* Footer Mobil */
    .footer {
        padding: 2rem 0 1rem !important;
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 2rem;
    }

    /* Harita Mobil */
    iframe {
        height: 300px !important;
    }

    /* Butonlar Mobil */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Container Mobil */
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Sosyal Medya İkonları Mobil */
    .social-icon {
        padding: 0.5rem !important;
    }

    /* Galeri Mobil */
    .col-md-4.col-lg-3 {
        margin-bottom: 1.5rem;
    }

    /* Başlıklar Mobil */
    .display-3,
    .display-4,
    .display-5 {
        font-size: 1.75rem !important;
    }

    /* Kart İçerikleri Mobil */
    .glass-card h3,
    .glass-card h4 {
        font-size: 1.25rem !important;
    }

    .glass-card p {
        font-size: 0.9rem !important;
    }

    /* CTA Kartı Mobil */
    .cta-card {
        padding: 2rem 1.5rem !important;
    }

    .cta-title {
        font-size: 1.75rem !important;
    }

    .cta-text {
        font-size: 1rem !important;
    }

    .cta-button {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    /* Harita Bölümü Mobil */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* İstatistik Kartları Mobil */
    .col-md-6.col-lg-3 {
        margin-bottom: 1rem;
    }

    /* İletişim Sayfası Mobil */
    .social-media-button {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .social-media-button>div {
        padding: 1rem !important;
    }

    /* Paketler Sayfası Mobil */
    .col-md-6.col-lg-4 {
        margin-bottom: 1.5rem;
    }

    /* Galeri Mobil */
    .col-md-4.col-lg-3 {
        margin-bottom: 1.5rem;
    }

    /* Hero Butonları Mobil */
    .d-flex.gap-3.flex-wrap {
        flex-direction: column;
    }

    .d-flex.gap-3.flex-wrap>* {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Harita Altı Bilgiler Mobil */
    .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

/* Tablet için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 992px) {
    .logo-container {
        width: 140px !important;
        height: 140px !important;
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .navbar-brand .text-gradient {
        font-size: 1.1rem !important;
    }

    .hero-text-content h1 {
        font-size: 2.5rem !important;
    }
}

/* Küçük mobil cihazlar için */
@media (max-width: 576px) {
    .logo-container {
        width: 80px !important;
        height: 80px !important;
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .hero-section-full {
        height: 55vh !important;
        min-height: 350px !important;
        min-height: 350px !important;
    }

    .hero-text-content h1 {
        font-size: 1.5rem !important;
    }

    .hero-text-content h2 {
        font-size: 0.9rem !important;
    }

    .hero-text-content .lead {
        font-size: 0.8rem !important;
    }

    .display-3,
    .display-4,
    .display-5 {
        font-size: 1.5rem !important;
    }

    .glass-card {
        padding: 1rem !important;
    }

    iframe {
        height: 250px !important;
    }

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Links */
a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-blue-dark);
    text-decoration: underline;
}

/* Dropdown */
.dropdown-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.dropdown-item {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 217, 255, 0.2);
    color: var(--accent-blue);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
}

/* Form Select */
.form-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
    color: var(--text-primary);
}

.form-select option {
    background: var(--secondary-bg);
    color: var(--text-primary);
}

/* Textarea */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-icon:hover {
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.social-icon svg {
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Hero Section Full Width */
.hero-section-full {
    position: relative;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.hero-section-full .carousel {
    height: 100%;
    position: relative;
}

.hero-section-full .carousel-item {
    position: relative;
    transition: transform 0.6s ease-in-out;
    -webkit-transition: transform 0.6s ease-in-out;
}

.hero-section-full .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.75) 50%, rgba(15, 20, 25, 0.85) 100%);
    z-index: 1;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-content {
    position: relative;
    z-index: 3;
}

.hero-decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), #FFD700);
    border-radius: 2px;
}

.hero-rating {
    margin-top: 2rem;
}

/* Hero Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #000;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Carousel Controls - Full Width */
.hero-section-full .carousel-control-prev,
.hero-section-full .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    cursor: pointer;
    pointer-events: auto;
}

.hero-section-full .carousel-control-prev {
    left: 30px;
}

.hero-section-full .carousel-control-next {
    right: 30px;
}

.hero-section-full .carousel-control-prev:hover,
.hero-section-full .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-section-full .carousel-control-prev-icon,
.hero-section-full .carousel-control-next-icon {
    background-color: #FFD700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.hero-section-full .carousel-indicators {
    margin-bottom: 2rem;
    z-index: 3;
}

.hero-section-full .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-section-full .carousel-indicators [data-bs-target].active {
    background-color: #FFD700;
    opacity: 1;
    border-color: #FFD700;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-section-full {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: 600px !important;
    }

    .hero-section-full .carousel {
        height: 100% !important;
    }

    .hero-section-full .carousel-item {
        height: 100% !important;
        min-height: 400px !important;
    }

    .hero-section-full .carousel-item img {
        object-fit: cover !important;
        object-position: center !important;
        min-height: 400px !important;
    }

    .hero-section-full .carousel-control-prev,
    .hero-section-full .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        left: 10px !important;
        right: 10px !important;
        opacity: 0.8 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .hero-section-full .carousel-control-prev-icon,
    .hero-section-full .carousel-control-next-icon {
        width: 16px !important;
        height: 16px !important;
    }

    .hero-section-full .carousel-indicators {
        margin-bottom: 1rem !important;
        gap: 0.5rem;
    }

    .hero-section-full .carousel-indicators [data-bs-target] {
        width: 10px !important;
        height: 10px !important;
        margin: 0 0.25rem !important;
    }

    .hero-content-overlay {
        padding: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-text-content {
        text-align: center !important;
        padding: 1rem !important;
    }

    .hero-text-content h1 {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.2 !important;
    }

    .hero-text-content h2 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-text-content .lead {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-rating {
        margin-top: 1rem !important;
        font-size: 0.85rem !important;
    }

    .hero-rating span {
        font-size: 1rem !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.625rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-decorative-line {
        width: 50px !important;
        height: 3px !important;
        margin: 0 auto 1rem !important;
    }

    .d-flex.gap-3.flex-wrap {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
}

/* Logo ve Navbar Mobil */
.logo-container {
    width: 120px !important;
    height: 120px !important;
    margin-top: -30px !important;
    margin-bottom: -30px !important;
}

.navbar-brand .text-gradient {
    font-size: 1rem !important;
}

.navbar-nav .nav-link {
    font-size: 1rem !important;
    margin: 0.3rem 0 !important;
    padding: 0.5rem 1rem !important;
}

/* Hero Section Mobil */
.hero-text-content h1 {
    font-size: 2rem !important;
}

.hero-text-content h2 {
    font-size: 1.1rem !important;
}

.hero-text-content .lead {
    font-size: 0.9rem !important;
}

.btn-hero-primary,
.btn-hero-outline {
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Kartlar Mobil */
.glass-card {
    margin-bottom: 1.5rem;
}

/* İstatistikler Mobil */
.display-4 {
    font-size: 2rem !important;
}

/* Footer Mobil */
.footer {
    padding: 2rem 0 1rem !important;
}

.footer .col-md-4 {
    margin-bottom: 2rem;
}

/* Harita Mobil */
iframe {
    height: 300px !important;
}

/* Butonlar Mobil */
.btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}

/* Container Mobil */
.container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Sosyal Medya İkonları Mobil */
.social-icon {
    padding: 0.5rem !important;
}

/* Galeri Mobil */
.col-md-4.col-lg-3 {
    margin-bottom: 1.5rem;
}


/* Content Area */
main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

/* Modern Gradient Buttons */
.btn-gradient-primary,
.btn-gradient-auth,
.btn-gradient-user {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%) !important;
    border: none !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    white-space: nowrap !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-gradient-primary::before,
.btn-gradient-auth::before,
.btn-gradient-user::before {
    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.6s, height 0.6s;
}

.btn-gradient-primary:hover::before,
.btn-gradient-auth:hover::before,
.btn-gradient-user:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gradient-primary:hover,
.btn-gradient-auth:hover,
.btn-gradient-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
    color: white;
}

.btn-gradient-primary:active,
.btn-gradient-auth:active,
.btn-gradient-user:active {
    transform: translateY(0);
}

.btn-gradient-primary:focus,
.btn-gradient-auth:focus,
.btn-gradient-user:focus {
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
    outline: none;
}

/* Social Media Buttons */
.btn-social-whatsapp,
.btn-social-instagram {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0.6rem !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
}

.btn-social-whatsapp {
    color: #25D366;
}

.btn-social-whatsapp:hover {
    background: #25D366;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-social-instagram {
    color: #E4405F;
}

.btn-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

/* Dropdown Menu Styling */
.dropdown-menu-dark {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item:hover {
    background: rgba(0, 217, 255, 0.2);
    color: var(--accent-blue);
    transform: translateX(5px);
}

.dropdown-item svg {
    transition: transform 0.3s ease;
}

.dropdown-item:hover svg {
    transform: scale(1.2);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Dropdown Toggle Animation */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Navbar Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    animation: slideDown 0.3s ease;
}

/* Pulse Animation for Buttons */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 217, 255, 0.6);
    }
}

.btn-gradient-auth:focus,
.btn-gradient-user:focus {
    animation: pulse 2s infinite;
}

/* Mobile Responsive for New Buttons */
@media (max-width: 768px) {

    .btn-gradient-auth,
    .btn-gradient-user {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        max-width: 180px !important;
        font-size: 0.8rem !important;
    }

    .btn-social-whatsapp,
    .btn-social-instagram {
        width: 40px !important;
        height: 40px !important;
        padding: 0.5rem !important;
    }

    .dropdown-menu {
        width: 100% !important;
        max-width: 250px !important;
    }

    .navbar-nav {
        gap: 0.5rem !important;
    }
}

/* Form Elements Dark Theme Fixes */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 217, 255, 0.3) !important;
    color: var(--text-primary) !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Select Dropdown Dark Theme */
select.form-control,
select.form-select,
select.form-select-dark {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 217, 255, 0.3) !important;
    color: var(--text-primary) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d9ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
}

/* Option elements - Force dark theme */
select.form-control option,
select.form-select option,
select.form-select-dark option,
option {
    background: rgba(15, 20, 25, 0.95) !important;
    background-color: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
    border: none !important;
}

select.form-control option:hover,
select.form-select option:hover,
select.form-select-dark option:hover,
option:hover {
    background: rgba(0, 217, 255, 0.2) !important;
    background-color: rgba(0, 217, 255, 0.2) !important;
    color: var(--accent-blue) !important;
}

select.form-control option:checked,
select.form-select option:checked,
select.form-select-dark option:checked,
option:checked,
select.form-control option:focus,
select.form-select option:focus,
select.form-select-dark option:focus,
option:focus {
    background: rgba(0, 217, 255, 0.3) !important;
    background-color: rgba(0, 217, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* Select dropdown when open - Chrome/Safari fix */
select.form-control:focus option,
select.form-select:focus option,
select.form-select-dark:focus option {
    background: rgba(15, 20, 25, 0.95) !important;
    background-color: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

select.form-control:focus option:checked,
select.form-select:focus option:checked,
select.form-select-dark:focus option:checked {
    background: rgba(0, 217, 255, 0.4) !important;
    background-color: rgba(0, 217, 255, 0.4) !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* Textarea Dark Theme */
textarea.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 217, 255, 0.3) !important;
    color: var(--text-primary) !important;
    resize: vertical !important;
}

textarea.form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25) !important;
}

textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Input Date and Time Dark Theme */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 217, 255, 0.3) !important;
    color: var(--text-primary) !important;
}

input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25) !important;
}

/* Date and Time Picker Icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.5);
    cursor: pointer;
    opacity: 0.8;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Select dropdown fix for all browsers */
select.form-control::-ms-expand,
select.form-select::-ms-expand,
select.form-select-dark::-ms-expand {
    display: none;
}

/* Specific fix for randevu select dropdown */
select.randevu-select,
select.randevu-select option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

select.randevu-select {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

select.randevu-select:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

select.randevu-select option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
}

select.randevu-select option:hover {
    background-color: rgba(0, 217, 255, 0.2) !important;
    color: var(--accent-blue) !important;
}

select.randevu-select option:checked,
select.randevu-select option:selected {
    background-color: rgba(0, 217, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* Form Label Styling */
.form-label {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}

/* Form Text (helper text) */
.form-text,
small.form-text {
    color: var(--text-secondary) !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
}

/* Global Select and Option Fix - Force Dark Theme */
select,
select *,
select option,
.dark-select,
.dark-select option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    background: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

select:not(:focus),
.dark-select:not(:focus) {
    background-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 217, 255, 0.3) !important;
}

select:focus,
.dark-select:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-blue) !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25) !important;
}

select option,
.dark-select option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    background: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
    border: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

select option:checked,
select option:selected,
.dark-select option:checked,
.dark-select option:selected {
    background-color: rgba(0, 217, 255, 0.3) !important;
    background: rgba(0, 217, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
}

select option:hover,
select option:focus,
.dark-select option:hover,
.dark-select option:focus {
    background-color: rgba(0, 217, 255, 0.2) !important;
    background: rgba(0, 217, 255, 0.2) !important;
    color: var(--accent-blue) !important;
}

/* Force dark background for select when opened */
select:focus option,
select[open] option,
.dark-select:focus option,
.dark-select[open] option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    background: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix for all form-control select elements */
.form-control.dark-select,
select.form-control.dark-select {
    background-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d9ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 0.75rem center / 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding-right: 2.5rem !important;
}

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-wrapper select {
    width: 100%;
    padding-right: 2.5rem !important;
}

.custom-select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--accent-blue);
    z-index: 1;
}

.custom-select-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.custom-select-wrapper select:focus+.custom-select-arrow svg {
    transform: rotate(180deg);
}

/* Override Bootstrap default select styles */
select.form-control,
select.form-select {
    background-color: rgba(255, 255, 255, 0.1) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d9ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 12px !important;
    padding-right: 2.5rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

select.form-control:focus,
select.form-select:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d9ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    color: rgba(255, 255, 255, 1) !important;
}

/* Force option styles on all browsers */
select.form-control option,
select.form-select option {
    background-color: rgba(15, 20, 25, 0.95) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Firefox specific */
@-moz-document url-prefix() {

    select.form-control option,
    select.form-select option {
        background-color: rgba(15, 20, 25, 0.95) !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    select.form-control option:checked,
    select.form-select option:checked {
        background-color: rgba(0, 217, 255, 0.3) !important;
        color: rgba(255, 255, 255, 1) !important;
    }
}

/* Webkit browsers (Chrome, Safari, Edge) */
select.form-control option:checked,
select.form-select option:checked {
    background-color: rgba(0, 217, 255, 0.3) !important;
    color: rgba(255, 255, 255, 1) !important;
}