@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #2e5240; /* Huzur Verici Adaçayı Yeşili */
  --brand-bronze: #b45309;  /* Sıcak Bronz/Kehribar */
  --brand-green: #10b981;   /* Canlı Yardımcı Yeşil */
  --brand-gold: #c59b27;    /* Sıcak Vaha Altını */
  --secondary-color: #18191b; /* Kâbe Örtüsü Siyahı */
  --text-color: #27272a; /* Koyu Yazı */
  --light-bg: #faf8f5;    /* Kum ve İnci Beyazı */
  --navbar-height: 80px;
}


html {
  height: 100%;
  overflow-x: hidden; /* Prevent global horizontal scroll */
}

body {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
  background-image: url('https://www.transparenttextures.com/patterns/arabic-patterns.png');
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.p-alan {
  padding: 85px 0;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}


.main-navbar {
  background-color: var(--secondary-color);
  border-top: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1000;
}

.main-navbar .nav-link {
  font-size: 0.78rem !important; /* Premium sleek size */
  font-weight: 600;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 9px !important;  /* Ultra compact horizontal padding to perfectly fit all 12 items */
  padding-right: 9px !important;

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}

.main-navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--brand-gold) !important;
}

.main-navbar .active-custom {
  background: linear-gradient(135deg, var(--brand-gold), #fbbf24) !important;
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.3) !important;
  border-radius: 4px;
}


.card {
  border: none;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

.card-body {
  padding: 1.5rem !important;
  color: var(--text-color) !important;
}

/* Ensure text inside cards inherits the dark/light color, but PROTECT buttons */
.card-body *:not(.btn):not(.btn-link):not(i) {
  color: inherit !important;
}

body.dark-mode .card-body *:not(.btn):not(.btn-link):not(i) {
  color: var(--text-color) !important;
}

/* Restore button text colors */
.card-body .btn-dark, .card-body .btn-primary, .card-body .btn-success, .card-body .btn-danger, .card-body .btn-warning {
  color: #fff !important;
}
.card-body .btn-warning {
  color: #212529 !important; /* Warning usually has dark text */
}
.card-body .btn-outline-secondary {
  color: var(--text-color) !important;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.price-tag {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}


.card .btn {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.9rem !important;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #fff;
}


.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-gold {
  color: var(--brand-gold) !important;
}

.bg-gold {
  background-color: var(--brand-gold) !important;
}

.border-gold {
  border-color: var(--brand-gold) !important;
}





footer.footer {
  padding-top: 90px !important;
  padding-bottom: 0 !important;
}


footer.footer .row {
  --bs-gutter-y: 14px;
}

footer.footer h6 {
  margin-bottom: 8px;
}

footer.footer p,
footer.footer li,
footer.footer small {
  margin-bottom: 6px;
  line-height: 1.45;
}

footer.footer ul {
  margin-bottom: 0;
}

footer.footer input,
footer.footer button {
  height: 34px;
  padding: 6px 10px;
}


footer.footer .text-center {
  margin-top: 14px;
  padding-top: 12px;
  padding-bottom: 12px !important;
}


@media (max-width: 768px) {


  footer.footer {
    padding: 8px 0;
  }

  footer.footer .row {
    --bs-gutter-y: 6px;
  }

  footer.footer h6 {
    margin-bottom: 4px;
  }

  footer.footer p,
  footer.footer li,
  footer.footer small {
    margin-bottom: 4px;
    line-height: 1.25;
  }


  footer.footer .col-lg-4 p {
    display: none;
  }


  footer.footer input,
  footer.footer button {
    min-height: 44px;
    height: auto;
    padding: 8px 12px;
  }


  footer.footer .text-center {
    margin-top: 6px;
    padding-top: 6px;
  }

}


.header-logo-area {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

header .navbar-brand h1 {
  font-size: 1.8rem !important;
  margin-bottom: 0;
  line-height: 1;
}

header .navbar-brand small {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

header .fa-stack {
  font-size: 1.8rem;
}

header .text-end h4 {
  font-size: 1rem;
  margin: 0;
}


.brand-logo {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-title {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
  }
  .brand-title {
    font-size: 1.2rem;
  }
  .main-navbar .nav-link {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}


@media all and (min-width: 1200px) {
  /* Hover ile dropdown aç */
  .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0 !important;
    border-top: 3px solid var(--brand-gold);
    border-radius: 0 0 12px 12px;
    animation: fadeIn 0.2s ease-out;
    z-index: 1050;
  }

  .navbar .nav-item.dropdown .dropdown-menu {
    display: none;
    margin-top: 0 !important;
  }

  /* Nav-item'ı hover alanına genişlet — boşluk köprüsü */
  .navbar .nav-item.dropdown {
    position: relative;
  }

  /* Dropdown ile nav-link arasındaki görünmez köprü — mouse kaybolmasın */
  .navbar .nav-item.dropdown > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
  }

  /* Bootstrap JS'in eklediği show sınıfını override et */
  .navbar .nav-item.dropdown .dropdown-menu.show {
    display: block !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DARK MODE SUPPORT (Class Based) */
body.dark-mode {
  --text-color: #f4f4f5;
  --light-bg: #121212;
  --secondary-color: #0d1117;
  background-color: #121212;
  color: #f4f4f5;
}

body.dark-mode .bg-white,
body.dark-mode .bg-light {
  background-color: #1e1e1e !important;
  color: #e0e0e0 !important;
}

body.dark-mode .text-dark,
body.dark-mode .text-muted {
  color: #b0b0b0 !important;
}

body.dark-mode .card {
  background-color: #1e1e1e;
  color: #e0e0e0;
  border: 1px solid #333;
}

body.dark-mode .main-navbar .nav-link {
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode header .navbar-brand .brand-title {
  color: #d4af37;
}

body.dark-mode header .navbar-brand .brand-subtitle,
body.dark-mode header .navbar-brand .brand-desc {
  color: #ccc !important;
}

body.dark-mode .table {
  color: #e0e0e0;
  border-color: #333;
}

body.dark-mode .dropdown-menu {
  background-color: #1e1e1e;
  border-color: #333;
}

body.dark-mode .dropdown-item {
  color: #e0e0e0;
}

body.dark-mode .dropdown-item:hover {
  background-color: #333;
  color: #fff;
}

body.dark-mode input.form-control,
body.dark-mode select.form-select,
body.dark-mode textarea.form-control {
  background-color: #2d2d2d;
  border-color: #444;
  color: #fff;
}

body.dark-mode .modal-content {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

body.dark-mode .modal-header,
body.dark-mode .modal-footer {
  border-color: #333;
}

body.dark-mode .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ==========================================================================
   PROFESSIONAL RESPONSIVE LAYER (Frontend Developer Touch)
   ========================================================================== */

/* 1. Global Image & Video Fluidity */
img, video {
    max-width: 100%;
    height: auto;
}

/* 2. Responsive Typography (Fluid Scale) */
@media (max-width: 991px) {
    h1, .display-3 { font-size: calc(1.8rem + 1.5vw) !important; }
    h2 { font-size: calc(1.5rem + 1vw) !important; }
    h3 { font-size: 1.5rem !important; }
    .p-alan { padding: 60px 0 !important; }
}

/* 3. Mobile & Tablet Specific Overrides */
@media (max-width: 767px) {
    /* Spacing Optimization */
    .p-alan { padding: 40px 0 !important; }
    .container { padding-left: 20px; padding-right: 20px; }
    
    /* Layout Fixes */
    .row { --bs-gutter-x: 1.5rem; }
    
    /* Button & Input Accessibility */
    .btn, .form-control { 
        min-height: 44px; /* Apple/Google Touch Target Standard */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Navbar Smoothness */
    .main-navbar .navbar-collapse {
        background: var(--secondary-color);
        margin: 0 -20px;
        padding: 10px 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

/* 4. Small Device (320px - 375px) Fine-tuning */
@media (max-width: 375px) {
    .brand-title { font-size: 1rem !important; }
    .display-3 { font-size: 1.8rem !important; }
    .btn-tema, .btn-ikincil { 
        width: 100%; /* Stack buttons on very small screens */
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
}

/* 5. Utility: Force Clear Overflow */
.no-overflow { overflow: hidden !important; }
.text-break { word-break: break-word !important; }

/* Premium Accordion Styling */
.accordion-item {
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.accordion-button {
    font-weight: 700 !important;
    padding: 1.2rem 1.5rem !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: rgba(16, 185, 129, 0.08) !important;
    color: #059669 !important;
}
.accordion-button::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Accordion Overrides */
body.dark-mode .accordion-item {
    background-color: #1e1e1f !important;
    border-color: #333 !important;
    box-shadow: none !important;
}
body.dark-mode .accordion-button {
    background-color: #1e1e1f !important;
    color: #e0e0e0 !important;
}
body.dark-mode .accordion-button:not(.collapsed) {
    background-color: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
}
body.dark-mode .accordion-body {
    background-color: #1a1a1b !important;
    color: #b0b0b0 !important;
}

/* Premium Filter Form Adaptive Styles */
.filtre-formu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
body.dark-mode .filtre-formu {
    background: rgba(30, 30, 31, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Premium List Group Adaptive Overrides */
.list-group-item {
    background-color: #ffffff !important;
    color: #1e293b !important;
    border-color: rgba(0,0,0,0.06) !important;
}
.list-group-item:hover {
    background-color: #f1f5f9 !important;
    color: #0f1c2e !important;
}
body.dark-mode .list-group-item {
    background-color: #1e1e1f !important;
    color: #e0e0e0 !important;
    border-color: #333 !important;
}
body.dark-mode .list-group-item:hover {
    background-color: #27272a !important;
    color: #fff !important;
}
body.dark-mode .list-group-item.active {
    background-color: var(--brand-green) !important;
    color: #fff !important;
    border-color: var(--brand-green) !important;
}

/* --------------------------------------------------------------------------
   DARK MODE CONTRAST & READABILITY OVERRIDES (FOR INLINE STYLES AND RICH TEXT)
   -------------------------------------------------------------------------- */
body.dark-mode .content-area,
body.dark-mode .blog-content,
body.dark-mode .accordion-body {
    color: #e2e8f0 !important;
}

body.dark-mode .content-area *, 
body.dark-mode .blog-content *,
body.dark-mode .accordion-body *,
body.dark-mode .content-area p, 
body.dark-mode .blog-content p,
body.dark-mode .accordion-body p,
body.dark-mode .content-area span, 
body.dark-mode .blog-content span,
body.dark-mode .accordion-body span,
body.dark-mode .content-area h1,
body.dark-mode .content-area h2,
body.dark-mode .content-area h3,
body.dark-mode .content-area h4,
body.dark-mode .content-area h5,
body.dark-mode .content-area h6,
body.dark-mode .blog-content h1,
body.dark-mode .blog-content h2,
body.dark-mode .blog-content h3,
body.dark-mode .blog-content h4,
body.dark-mode .blog-content h5,
body.dark-mode .blog-content h6,
body.dark-mode .accordion-body h1,
body.dark-mode .accordion-body h2,
body.dark-mode .accordion-body h3,
body.dark-mode .accordion-body h4,
body.dark-mode .accordion-body h5,
body.dark-mode .accordion-body h6,
body.dark-mode .content-area strong,
body.dark-mode .blog-content strong,
body.dark-mode .accordion-body strong,
body.dark-mode .content-area em,
body.dark-mode .blog-content em,
body.dark-mode .accordion-body em,
body.dark-mode .content-area li,
body.dark-mode .blog-content li,
body.dark-mode .accordion-body li,
body.dark-mode .content-area ul,
body.dark-mode .blog-content ul,
body.dark-mode .accordion-body ul {
    color: #e2e8f0 !important;
}

body.dark-mode .content-area *,
body.dark-mode .blog-content *,
body.dark-mode .accordion-body * {
    background-color: transparent !important;
    background: transparent !important;
}

/* ==========================================================================
   PREMIUM CUSTOM STYLES & SHIMMER EFFECTS (By Antigravity Coding Touch)
   ========================================================================== */

/* 1. Shimmering Gold Buttons */
.btn-gold {
    background: linear-gradient(135deg, #c59b27, #eab308) !important;
    color: #09090b !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px !important;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #eab308, #c59b27) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.4) !important;
}

/* 2. Premium Emerald Buttons */
.btn-emerald {
    background: linear-gradient(135deg, #0c5c3b, #10b981) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(12, 92, 59, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px !important;
}
.btn-emerald:hover {
    background: linear-gradient(135deg, #10b981, #0c5c3b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(12, 92, 59, 0.4) !important;
}

/* 3. Glowing Card & Lift Effects */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.hover-lift:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(197, 155, 39, 0.15) !important;
    border-color: rgba(197, 155, 39, 0.3) !important;
}

/* 4. Glassmorphism Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04) !important;
}
body.dark-mode .glass-panel {
    background: rgba(15, 23, 42, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

/* 5. Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
body.dark-mode ::-webkit-scrollbar-track {
    background: #1e1e1f;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #eab308;
}

/* ==========================================================================
   PREMIUM CUSTOM STYLES & SHIMMER EFFECTS (By Antigravity Overhaul)
   ========================================================================== */

/* 1. Altın Gradyan Başlıklar */
.text-gradient-gold {
    background: linear-gradient(135deg, #c59b27 0%, #facc15 50%, #eab308 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block;
}

/* 2. Yüzen Buzlu Cam Navbar */
.premium-navbar {
    background: rgba(9, 9, 11, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(197, 155, 39, 0.25) !important;
    border-top: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
body.dark-mode .premium-navbar {
    background: rgba(13, 17, 23, 0.85) !important;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2) !important;
}

/* 3. Tur Kartı Shimmer Efekti */
@keyframes premiumShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.shimmer-card {
    position: relative;
    overflow: hidden;
}
.shimmer-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}
.shimmer-card:hover::after {
    opacity: 1;
    animation: premiumShimmer 1.8s infinite;
}

/* 4. İleri Seviye Glassmorphic Panolar */
.glass-panel-luxe {
    background: var(--vakit-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid var(--vakit-border) !important;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.glass-panel-luxe:hover {
    border-color: var(--brand-gold) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12) !important;
}

/* 5. Mikro Işıma ve Buton Hareketleri */
@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-premium-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c59b27, #eab308) !important;
    color: #09090b !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-premium-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.btn-premium-gold:hover::before {
    animation: btnShine 0.8s ease-in-out forwards;
}
.btn-premium-gold:hover {
    background: linear-gradient(135deg, #eab308, #c59b27) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(197, 155, 39, 0.45) !important;
    color: #09090b !important;
}

.btn-premium-emerald {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c5c3b, #10b981) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(12, 92, 59, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-premium-emerald::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.btn-premium-emerald:hover::before {
    animation: btnShine 0.8s ease-in-out forwards;
}
.btn-premium-emerald:hover {
    background: linear-gradient(135deg, #10b981, #0c5c3b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(12, 92, 59, 0.45) !important;
    color: #ffffff !important;
}

/* 6. Preloader Gold Glow Pulse */
@keyframes goldGlowPulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(197, 155, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}
.preloader-logo-pulse {
    animation: goldGlowPulse 2.5s infinite;
    border: 5px solid var(--brand-gold) !important;
}

/* ==========================================================================
   SUPER RESPONSIVE NAVBAR FIX (NO OVERFLOW FOR LARGE MENUS)
   ========================================================================== */

/* 1. Laptop and Medium Desktop Optimization (1200px - 1400px) */
@media (min-width: 1200px) and (max-width: 1450px) {
    .main-navbar .nav-link {
        font-size: 0.78rem !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .main-navbar .nav-link i {
        font-size: 0.75rem !important;
        margin-right: 3px !important;
    }
}

/* 2. Smaller Screen Dynamic Font Scaling (1200px and up) */
@media (min-width: 1200px) {
    .premium-navbar .navbar-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

/* 3. Handle Collapse Crossover (Between 992px and 1200px) */
/* Since we changed collapse breakpoint to xl, ensure mobile styles apply below 1200px */
@media (max-width: 1199.98px) {
    .main-navbar .navbar-collapse {
        background: var(--secondary-color) !important;
        margin: 0 -20px !important;
        padding: 10px 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    .main-navbar .nav-link {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        padding: 12px 20px !important;
        width: 100% !important;
    }
    .navbar-nav {
        width: 100% !important;
    }
    .navbar-expand-xl .navbar-collapse {
        display: none !important;
    }
    .navbar-expand-xl .navbar-collapse.show {
        display: block !important;
    }
}

/* ==========================================================================
   UNIFIED PREMIUM VIEW STYLES (INDEX & DETAILS PAGES)
   ========================================================================== */

.index-container-wrapper {
    --koyu-zemin: var(--light-bg);
    --kart-zemin: #ffffff;
    --kart-hover: #f8f8f6;
    --yesil-ana: var(--primary-color);
    --yesil-koyu: #031c12;
    --altin-renk: var(--brand-gold);
    --yazi-acik: #18181b;
    --yazi-soluk: #71717a;
    --border-ince: rgba(0, 0, 0, 0.05);
    --govde-golge: 0 12px 40px rgba(0, 0, 0, 0.03);
    --vakit-bg: rgba(255, 255, 255, 0.8);
    --vakit-border: rgba(212, 175, 55, 0.12);
    --shadow-normal: 0 10px 30px rgba(0, 0, 0, 0.04);
    font-family: 'Outfit', sans-serif;
    background-color: var(--koyu-zemin);
    color: var(--yazi-acik);
}

body.dark-mode .index-container-wrapper {
    --koyu-zemin: #0c0d0e;
    --kart-zemin: #151618;
    --kart-hover: #1e2022;
    --yesil-ana: #10b981;
    --yesil-koyu: #059669;
    --altin-renk: #fbbf24;
    --yazi-acik: #f4f4f5;
    --yazi-soluk: #a1a1aa;
    --border-ince: rgba(255, 255, 255, 0.05);
    --govde-golge: 0 0 35px rgba(212, 175, 55, 0.08);
    --vakit-bg: rgba(21, 22, 24, 0.85);
    --vakit-border: rgba(251, 191, 36, 0.12);
    --shadow-normal: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* Premium Buttons */
.btn-tema {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--yesil-ana) 0%, var(--altin-renk) 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(6, 44, 29, 0.2);
}
.btn-tema::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.btn-tema:hover::before {
    animation: btnShine 0.8s ease-in-out forwards;
}
.btn-tema:hover {
    background: linear-gradient(135deg, var(--altin-renk) 0%, var(--yesil-ana) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    color: #ffffff !important;
}

.index-container-wrapper .btn-ikincil {
    background: rgba(0, 0, 0, 0.02);
    color: var(--yazi-acik);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}
.index-container-wrapper .btn-ikincil:hover {
    background: var(--altin-renk);
    color: #0c0d0e !important;
    transform: translateY(-2px);
    border-color: var(--altin-renk);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}
body.dark-mode .index-container-wrapper .btn-ikincil {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.2);
}
body.dark-mode .index-container-wrapper .btn-ikincil:hover {
    background: var(--altin-renk);
    color: #0c0d0e !important;
}

/* Hero Slider */
.vitrin {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--koyu-zemin);
    border-bottom: 3px solid var(--altin-renk);
}
.vitrin-foto {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.9;
}
.vitrin-katman {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(12, 13, 14, 0.85) 0%, rgba(12, 13, 14, 0.45) 50%, rgba(12, 13, 14, 0.15) 100%), 
                linear-gradient(to top, var(--koyu-zemin) 0%, transparent 30%);
    z-index: 1;
}
.vitrin-icerik {
    position: relative;
    z-index: 2;
}

/* Cards & Layout Grid */
.ozel-kart {
    background: var(--kart-zemin);
    border: 1px solid var(--border-ince);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--govde-golge);
}
.ozel-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    border-color: var(--altin-renk);
}
.ikon-kutu {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(6, 44, 29, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--yesil-ana);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.ozel-kart:hover .ikon-kutu {
    background: var(--altin-renk);
    color: #0c0d0e;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.tur-karti {
    background: var(--kart-zemin);
    border-radius: 20px;
    border: 1px solid var(--border-ince);
    overflow: hidden;
    box-shadow: var(--shadow-normal);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tur-karti:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12) !important;
    border-color: var(--altin-renk) !important;
}
.tur-foto {
    aspect-ratio: 1.25 / 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.tur-foto img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tur-karti:hover .tur-foto img {
    transform: scale(1.06);
}
.tarih-etiket {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(24, 25, 27, 0.8) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid var(--altin-renk);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Category Cards */
.kategori-kart {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-ince);
    background: var(--kart-zemin);
    box-shadow: var(--shadow-normal);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.kategori-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(6, 44, 29, 0.12);
    border-color: var(--yesil-ana);
}
.kategori-resim-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
}
.kategori-resim-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.kategori-kart:hover .kategori-resim-wrapper img {
    transform: scale(1.05);
}
.kategori-kart-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(12, 13, 14, 0.7) 0%, transparent 60%);
    z-index: 1;
}
.kategori-ikon-badge {
    position: absolute;
    bottom: 15px; right: 15px;
    width: 50px; height: 50px;
    background: var(--altin-renk);
    color: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}
.kategori-kart:hover .kategori-ikon-badge {
    background: var(--yesil-ana);
    transform: scale(1.06) rotate(360deg);
}
.kategori-baslik-luxe {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--yesil-ana);
    transition: color 0.3s;
}
.kategori-kart:hover .kategori-baslik-luxe {
    color: var(--altin-renk);
}

/* Kaaba Compass Widget */
.pusula-container {
    position: relative;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 44, 29, 0.04) 0%, rgba(12, 13, 14, 0.9) 100%);
    border: 3px solid var(--altin-renk);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2), inset 0 0 15px rgba(212, 175, 55, 0.15);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.pusula-kadran {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.25);
}
.pusula-yon {
    position: absolute;
    font-weight: 800;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}
.pusula-n { top: 8px; left: 50%; transform: translateX(-50%); color: #f43f5e; }
.pusula-s { bottom: 8px; left: 50%; transform: translateX(-50%); }
.pusula-e { right: 8px; top: 50%; transform: translateY(-50%); }
.pusula-w { left: 8px; top: 50%; transform: translateY(-50%); }

.pusula-kabe-merkez {
    position: absolute;
    width: 32px; height: 32px;
    background: #000000;
    border: 2px solid var(--altin-renk);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.pusula-kabe-merkez i {
    color: var(--altin-renk);
    font-size: 0.85rem;
}
.pusula-ibre {
    position: absolute;
    width: 8px; height: 160px;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}
.pusula-ibre::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 80px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 80px solid var(--altin-renk);
}
.pusula-ibre::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 80px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 80px solid rgba(255, 255, 255, 0.25);
}

/* Countdown Widgets */
.sayac-kart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-ince);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
}
.sayac-kart:hover {
    border-color: var(--altin-renk);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.05);
}
.sayac-hac-ramazan {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}
.sayac-birim {
    flex: 1;
    background: rgba(6, 44, 29, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 10px 4px;
    text-align: center;
}
.sayac-sayi {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--altin-renk);
    line-height: 1.1;
}
.sayac-etiket {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--yazi-soluk);
    margin-top: 3px;
    font-weight: 600;
}

/* Details Page Info Section */
.custom-tab-bar {
    background-color: #f3f4f6;
    border-radius: 30px;
    padding: 4px;
    border: none;
}
body.dark-mode .custom-tab-bar {
    background-color: #1a1b1d;
}
.custom-tab-bar .nav-link {
    border-radius: 30px !important;
    border: none !important;
    padding: 10px 18px !important;
    color: #4b5563 !important;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}
body.dark-mode .custom-tab-bar .nav-link {
    color: #9ca3af !important;
}
.custom-tab-bar .nav-link.active {
    background-color: var(--yesil-ana) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(6, 44, 29, 0.25);
}
body.dark-mode .custom-tab-bar .nav-link.active {
    background-color: var(--altin-renk) !important;
    color: #0c0d0e !important;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.25);
}

.info-icon-box {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}
.info-icon-box-flight { background-color: rgba(13, 110, 253, 0.06); color: #0d6efd; }
.info-icon-box-hotel { background-color: rgba(245, 158, 11, 0.06); color: #f59e0b; }
.info-icon-box-transfer { background-color: rgba(16, 185, 129, 0.06); color: #10b981; }
.info-icon-box-guide { background-color: rgba(6, 182, 212, 0.06); color: #06b6d4; }

.quick-info-card {
    transition: all 0.3s ease;
}
.quick-info-card:hover .info-icon-box {
    transform: translateY(-3px) scale(1.06);
}

/* Booking Steps Indicator */
.booking-steps-indicator {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.step-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 60px;
}
.step-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e4e4e7;
    color: #71717a;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
body.dark-mode .step-dot {
    background-color: #1e2022;
    border-color: #3f3f46;
    color: #a1a1aa;
}
.step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #71717a;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}
.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e4e4e7;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
body.dark-mode .step-line {
    background-color: #27272a;
}

.step-indicator-item.active .step-dot {
    background-color: var(--yesil-ana);
    border-color: var(--yesil-ana);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(6, 44, 29, 0.15);
}
body.dark-mode .step-indicator-item.active .step-dot {
    background-color: var(--altin-renk);
    border-color: var(--altin-renk);
    color: #0c0d0e;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}
.step-indicator-item.active .step-label {
    color: var(--yesil-ana);
    font-weight: 700;
}
body.dark-mode .step-indicator-item.active .step-label {
    color: var(--altin-renk);
}

.step-indicator-item.completed .step-dot {
    background-color: var(--yesil-ana);
    border-color: var(--yesil-ana);
    color: #ffffff;
}
body.dark-mode .step-indicator-item.completed .step-dot {
    background-color: var(--yesil-ana);
    border-color: var(--yesil-ana);
    color: #ffffff;
}
.step-indicator-item.completed .step-dot::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
}
.step-indicator-item.completed .step-dot .step-num {
    display: none;
}
.step-line.completed {
    background-color: var(--yesil-ana);
}

/* Premium Inputs */
.premium-input {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    color: #18181b;
    transition: all 0.3s ease;
}
body.dark-mode .premium-input {
    border-color: rgba(255, 255, 255, 0.08);
    background-color: #1e2022;
    color: #f4f4f5;
}
.premium-input:focus {
    border-color: var(--altin-renk) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12) !important;
}

.btn-premium-primary {
    background-color: var(--yesil-ana);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-premium-primary:hover {
    background-color: var(--yesil-koyu);
    color: #ffffff;
    transform: translateY(-1px);
}
body.dark-mode .btn-premium-primary {
    background-color: var(--altin-renk);
    color: #0c0d0e;
}
body.dark-mode .btn-premium-primary:hover {
    background-color: #facc15;
    color: #0c0d0e;
}

.btn-premium-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-premium-secondary:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}
body.dark-mode .btn-premium-secondary {
    background-color: #27272a;
    color: #d4d4d8;
}
body.dark-mode .btn-premium-secondary:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

/* Timeline & Details Page Specifics */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift {
    transition: all 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08) !important;
}
.hover-lift-primary {
    transition: all 0.25s ease;
}
.hover-lift-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35) !important;
}
.hover-lift-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3) !important;
}

.nav-tabs .nav-link { color: #555; border: none; border-bottom: 3px solid transparent; padding: 1rem; transition: all 0.3s; }
.nav-tabs .nav-link.active { color: var(--primary-color); border-bottom: 3px solid var(--primary-color); background: transparent; }
.nav-tabs .nav-link:hover { color: var(--primary-color); }
.accordion-button:not(.collapsed) { background-color: rgba(var(--bs-primary-rgb), 0.1); color: var(--bs-primary); }
.accordion-button:focus { box-shadow: none; }

/* Mobil Hero Düzeltme */
@media (max-width: 768px) {
    .detail-hero { height: 280px !important; margin-top: 0 !important; }
    .detail-hero h1 { font-size: 1.5rem !important; }
    .detail-hero .lead { font-size: 0.85rem !important; }
}
@media (max-width: 480px) {
    .detail-hero { height: 220px !important; }
    .detail-hero h1 { font-size: 1.25rem !important; }
}

/* Sidebar sticky mobilde kaldırıldı */
@media (max-width: 991px) {
    .position-sticky { position: static !important; top: auto !important; }
}

/* Premium Timeline Styling */
.timeline-container {
    position: relative;
    padding-left: 50px;
    margin-top: 20px;
}
@media (max-width: 576px) {
    .timeline-container { padding-left: 40px; }
    .timeline-badge { width: 38px !important; height: 38px !important; }
    .timeline-badge-wrapper { left: -40px !important; width: 40px !important; }
    .timeline-badge .day-num { font-size: 13px; }
    .timeline-badge .day-text { font-size: 7px; }
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-gold) 0%, var(--primary-color) 100%);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.timeline-badge-wrapper {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timeline-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid var(--brand-gold);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    transition: all 0.3s ease;
}
.timeline-badge .day-num {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
}
.timeline-badge .day-text {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.timeline-card {
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-ince) !important;
    background-color: var(--kart-zemin) !important;
}
.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}
.timeline-card-header {
    border-radius: 12px !important;
    transition: background-color 0.2s;
    background-color: var(--kart-zemin) !important;
}
.timeline-card-header:hover {
    background-color: var(--kart-hover) !important;
}
.timeline-card-header[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    color: var(--brand-gold) !important;
}
.timeline-card-header[aria-expanded="true"] {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    background-color: var(--kart-hover) !important;
}
.timeline-card-body {
    background-color: var(--kart-zemin) !important;
    color: var(--text-color) !important;
}

/* Dark Mode Adaptive Timeline Overrides */
body.dark-mode .timeline-card {
    background-color: #151618 !important;
    border-color: #27272a !important;
}
body.dark-mode .timeline-card-header,
body.dark-mode .timeline-card-body {
    background-color: #151618 !important;
    color: #f4f4f5 !important;
    border-color: #27272a !important;
}
body.dark-mode .timeline-card-header h5 {
    color: #ffffff !important;
}
body.dark-mode .timeline-card-header:hover {
    background-color: #1e2022 !important;
}
body.dark-mode .timeline-badge {
    background-color: #1e2022 !important;
}
body.dark-mode .timeline-container::before {
    background: linear-gradient(to bottom, #fbbf24 0%, #10b981 100%);
}