
/* Galeri Stilleri */
.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
  }
  
  .gallery-item:hover .gallery-hover {
    opacity: 1 !important;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item .btn:hover {
    color: #000 !important;
  }
  
  .gallery-item .btn:hover .position-absolute {
    transform: scaleX(1) !important;
  }
  
  /* Modern Kart Stilleri */
  .modern-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(129, 109, 71, 0.2);
  }
  
  .feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(129, 109, 71, 0.2);
  }
  
  /* İkon Container Stilleri */
  .icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(129, 109, 71, 0.3);
    transition: all 0.3s ease;
  }
  
  .modern-card:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(129, 109, 71, 0.4);
  }
  
  .icon-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
  }
  
  .feature-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(129, 109, 71, 0.3);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon-container {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(129, 109, 71, 0.4);
  }
  
  .feature-icon-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
  }
  
  /* Modern Buton Stilleri */
  .modern-btn {
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }
  
  .contact-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
  }
  
  .contact-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
  }
  
  .reservation-btn {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
  }
  
  .reservation-btn:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
  }
  
  /* Responsive Düzenlemeler */
  @media (max-width: 768px) {
    .modern-card, .feature-card {
      margin-bottom: 1rem;
    }
    
    .icon-container {
      width: 40px;
      height: 40px;
    }
    
    .feature-icon-container {
      width: 50px;
      height: 50px;
    }
    
    .icon-text, .feature-icon-text {
      font-size: 16px;
    }
  }
  
  /* Kart İçerik Animasyonları */
  .modern-card .card-title,
  .feature-card .card-title {
    transition: color 0.3s ease;
  }
  
  .modern-card:hover .card-title,
  .feature-card:hover .card-title {
    color: #816d47 !important;
  }
  
  /* Gölge Efektleri */
  .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
  }
  
  .rounded-4 {
    border-radius: 1rem !important;
  }
  
  .rounded-3 {
    border-radius: 0.75rem !important;
  }
  
  /* Hızlı İletişim Kartı Stilleri */
  .quick-contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 24px;
    border: 1px solid rgba(129, 109, 71, 0.1);
    transition: all 0.3s ease;
  }
  
  .quick-contact-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  
  .quick-contact-header {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .info-icon {
    width: 48px;
    height: 48px;
    background: #816d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(129, 109, 71, 0.3);
  }
  
  .info-icon i {
    color: white;
    font-size: 18px;
  }
  
  .quick-contact-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
  }
  
  .contact-details {
    margin-bottom: 24px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 0;
  }
  
  .contact-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-icon {
    width: 36px;
    height: 36px;
    background: #816d47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(129, 109, 71, 0.2);
  }
  
  .contact-icon i {
    color: white;
    font-size: 14px;
  }
  
  .contact-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .quick-contact-buttons {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }
  
  .quick-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
  }
  
  .contact-quick-btn {
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    color: white;
    box-shadow: 0 2px 8px rgba(129, 109, 71, 0.3);
  }
  
  .contact-quick-btn:hover {
    background: linear-gradient(135deg, #6b5a3d, #5a4b32);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(129, 109, 71, 0.4);
  }
  
  .reservation-quick-btn {
    background: linear-gradient(135deg, #a67c52, #8b6f47);
    color: white;
    box-shadow: 0 2px 8px rgba(166, 124, 82, 0.3);
  }
  
  .reservation-quick-btn:hover {
    background: linear-gradient(135deg, #8b6f47, #7a5f3e);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.4);
  }
  
  /* Responsive Düzenlemeler */
  @media (max-width: 768px) {
    .quick-contact-card {
      padding: 20px;
    }
    
    .info-icon {
      width: 40px;
      height: 40px;
    }
    
    .info-icon i {
      font-size: 16px;
    }
    
    .contact-icon {
      width: 32px;
      height: 32px;
    }
    
    .contact-icon i {
      font-size: 12px;
    }
    
    .contact-text {
      font-size: 13px;
    }
    
    .quick-btn {
      padding: 10px 12px;
      font-size: 12px;
    }
  }
  
  /* Modern Hotel Card Styles */
  .hotel-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(129, 109, 71, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: rgba(129, 109, 71, 0.2);
  }
  
  .hotel-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .hotel-img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .hotel-card:hover .hotel-img {
    transform: scale(1.1);
  }
  
  .hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .hotel-card:hover .hotel-overlay {
    opacity: 1;
  }
  
  .hotel-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(129, 109, 71, 0.3);
  }
  
  .hotel-card-content {
    padding: 24px;
  }
  
  .hotel-info {
    margin-bottom: 20px;
  }
  
  .hotel-brand {
    color: #816d47;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  
  .hotel-title {
    margin: 0;
  }
  
  .hotel-title a {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .hotel-title a:hover {
    color: #816d47;
  }
  
  .hotel-features {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(129, 109, 71, 0.1);
    border-bottom: 1px solid rgba(129, 109, 71, 0.1);
  }
  
  .features-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  
  .features-row:last-child {
    margin-bottom: 0;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(129, 109, 71, 0.2);
  }
  
  .feature-icon i {
    color: white;
    font-size: 12px;
  }
  
  .feature-text {
    color: #2c3e50;
    font-size: 13px;
    font-weight: 500;
  }
  
  .feature-item.full-width {
    flex: 1;
    justify-content: center;
  }
  
  .hotel-actions {
    display: flex;
    gap: 12px;
  }
  
  .btn-inspect, .btn-reserve {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-inspect {
    background: linear-gradient(135deg, #816d47, #6b5a3d);
    color: white;
    box-shadow: 0 2px 8px rgba(129, 109, 71, 0.3);
  }
  
  .btn-inspect:hover {
    background: linear-gradient(135deg, #6b5a3d, #5a4b32);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(129, 109, 71, 0.4);
  }
  
  .btn-reserve {
    background: linear-gradient(135deg, #a67c52, #8b6f47);
    color: white;
    box-shadow: 0 2px 8px rgba(166, 124, 82, 0.3);
  }
  
  .btn-reserve:hover {
    background: linear-gradient(135deg, #8b6f47, #7a5f3e);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.4);
  }
  
  /* Hotel Card Responsive Design */
  @media (max-width: 768px) {
    .hotel-card-content {
      padding: 20px;
    }
    
    .features-row {
      flex-direction: column;
      gap: 8px;
    }
    
    .feature-item {
      justify-content: flex-start;
    }
    
    .feature-item.full-width {
      justify-content: flex-start;
    }
    
    .hotel-actions {
      flex-direction: column;
    }
    
    .btn-inspect, .btn-reserve {
      width: 100%;
    }
    
    .hotel-card-image {
      height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .hotel-card-image {
      height: 180px;
    }
    
    .hotel-brand {
      font-size: 11px;
    }
    
    .hotel-title a {
      font-size: 16px;
    }
    
    .feature-text {
      font-size: 12px;
    }
  }
  
  /* Slider Butonları ve İçerik Düzenlemeleri */
  .slider-content-wrapper {
    padding: 20px 15px;
  }
  
  .slider-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  
  .slider-btn {
    flex: 1 1 auto;
    min-width: 140px;
    display: inline-block;
  }
  
  .slider-btn a {
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  
  /* Slider Mobil Düzenlemeleri */
  @media (max-width: 768px) {
    .slider-content-wrapper {
      padding: 20px 10px;
      margin-bottom: 15px;
    }
  
    .slider-buttons-container {
      flex-direction: row;
      gap: 10px;
      width: 100%;
    }
  
    .slider-btn {
      flex: 1;
      min-width: 120px;
      max-width: 48%;
    }
  
    .slider-btn a {
      font-size: 12px;
      padding: 8px 12px !important;
      white-space: normal;
      word-break: break-word;
      line-height: 1.4;
    }
  
    /* Slider slide içeriği için genel padding */
    .hero-slider2 .swiper-slide .container {
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .hero-slider2 .swiper-slide {
      padding-top: 60px;
      padding-bottom: 100px;
    }
  }
  
  @media (max-width: 480px) {
    .slider-buttons-container {
      gap: 8px;
    }
  
    .slider-btn {
      min-width: 100px;
      max-width: 48%;
    }
  
    .slider-btn a {
      font-size: 11px;
      padding: 7px 10px !important;
    }
  
    .slider-content-wrapper {
      padding: 15px 8px;
    }
  
    /* Slider başlık ve metin için mobil düzenlemeler */
    .slider-content-wrapper h1 {
      font-size: 24px !important;
      line-height: 1.3 !important;
      margin-bottom: 12px !important;
    }
  
    .slider-content-wrapper p {
      font-size: 13px !important;
      margin-bottom: 15px !important;
      padding-left: 10px !important;
    }
    .absolute{
        margin-bottom:-82px;
    }
    
  }
  
  /* Tablet görünümü için optimizasyon */
  @media (min-width: 481px) and (max-width: 768px) {
    .slider-btn {
      min-width: 130px;
    }
  
    .slider-btn a {
      font-size: 13px;
      padding: 10px 15px !important;
    }
  
    .slider-buttons-container {
      gap: 12px;
    }
  }
  
  /* Thumbs Slider Z-Index Düzenlemeleri */
  .hero-slider-container {
    position: relative;
  }
  
  .hero-slider2 .swiper-slide {
    position: relative;
  }
  
  /* Banner right z-index düşük tutulmalı - banner right div'i için */
  .hero-slider2 .swiper-slide > div > div[class*="absolute"] {
    z-index: 0 !important;
  }
  
  /* Banner right içindeki resim için z-index */
  .hero-slider2 .swiper-slide img[src*="slider"] {
    position: relative;
    z-index: 0;
  }
  
  /* Thumbs slider container yüksek z-index */
  .hero-slider-container > div:last-child {
    z-index: 100 !important;
    position: relative;
  }
  
  /* Navigation ve thumbs slider wrapper için */
  .hero-slider-container .absolute.bottom-\[30px\] {
    z-index: 100 !important;
  }
  
  /* Thumbs slider görünürlüğü için ek güvenlik */
  .hero-slider2-tumbs_slider {
    position: relative;
    z-index: 100 !important;
  }
  
  .hero-slider2-tumbs_slider .swiper-wrapper {
    position: relative;
    z-index: 100 !important;
  }
  
  .hero-slider2-tumbs_slider .swiper-slide {
    position: relative;
    z-index: 100 !important;
  }
  
  .hero-slider2-tumbs_slider .swiper-slide img {
    position: relative;
    z-index: 100 !important;
  }