/* --- Global Ayarlar & Değişkenler --- */
:root {
    --color-primary: #f05a42; 
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray: #f4f4f4;
    
    --font-main: 'Poppins', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ------------------
Hero Ana Alanı 
------------------ */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000; 
}

.hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

/* --- İçerik Konumlandırma --- */
.hero__container {
    width: 100%;
    padding-left: 5%;
    position: relative;
    z-index: 3; 
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

}

.hero__content {
    max-width: 800px;
    text-align: left;
}

/* ------------------------ 
Animasyon ve Metin Tasarımı
------------------------ */
.hero__title-animate {
    display: block;
    color: #ffffff;
    font-size: 58px; 
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease-out forwards; 
}

.hero__title-animate span {
    color: var(--color-primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 3s; }
.delay-2 { animation-delay: 3s; }

/* ----------------------- 
Çerez Çubuğu (Turuncu Bar) 
------------------------ */
.cookie-bar {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary); 
    color: white;
    padding: 15px 0;
    z-index: 9999; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2); 
    transition: transform 0.5s ease-in-out;
}

.cookie-bar__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}

.cookie-bar--hidden {
    transform: translateY(100%); 
    pointer-events: none;
}

.btn-cookie {
    background-color: transparent; 
    color: #ffffff; 
    border: 2px solid #ffffff; 
    padding: 8px 24px; 
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease; 
    outline: none;
    font-family: var(--font-main);
}

.btn-cookie:hover {
    background-color: #ffffff;
    color: var(--color-primary); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cookie:active {
    transform: translateY(0);
}

/* ================================
======== Rezerversyon Alanı =======
=================================== */

.modern-search-bar {
    display: flex;
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 10px;
}

.search-group {
    display: flex;
    align-items: center;
    background: #f8f9fb;
    padding: 10px 20px;
    border-radius: 15px;
    flex: 2;
    position: relative;
}

.mid-group { flex: 1.5; }
.action-group { 
    background: transparent; 
    flex: 1; 
    justify-content: space-between;
    padding-right: 0;
}

.input-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.block-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 700;
    margin-bottom: 4px;
}

.block-label i { color: var(--primary-gold); margin-right: 5px; }

.input-block input, .input-block select {
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 0;
}

.route-divider {
    padding: 0 15px;
    color: #ccc;
    font-size: 14px;
}

.round-trip-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px; width: 14px;
    left: 3px; bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { background-color: var(--primary-gold); }
input:checked + .slider:before { transform: translateX(14px); }

.switch-text { font-size: 12px; font-weight: 700; }

.main-calculate-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.main-calculate-btn:hover {
    background: var(--color-black);
    transform: scale(1.02);
}

.booking-section {
    position: absolute;
    bottom: 10px; 
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1250px;
    z-index: 100; 
}

/* -----------------
Filo 
----------------- */ 
.fleet {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; 
    overflow: hidden;
}

.fleet__title {
    position: relative;
    z-index: 5; 
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.fleet-decoration {
    position: absolute;
    top: -20px; 
    left: -40px; 
    z-index: 1;  
    pointer-events: none;
    opacity: 0.4;
}

.fleet-decoration img {
    height: 1000px;
    width: auto;
    padding-left: 150px;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: auto;
    margin-bottom: 50px; 
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 15px;
    border-radius: 30px;
}

.vehicle-card__content {
    padding: 0 25px 25px 25px;
}

.vehicle-card__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vehicle-card__features {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.vehicle-card__features i {
    color: #333;
    margin-right: 5px;
}


.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
}

/* -------------
Ara Seperator 
-------------- */ 
.popular-tours {
    position: relative;
    background-color: var(--color-primary); 
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/* Çapraz çizgili desen efekti */
.tours-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Desenin hareket alanı için geniş tutuyoruz */
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 20px,
        transparent 20px,
        transparent 40px
    );
    opacity: 0.6;
    pointer-events: none;
}

.tours-title {
    position: relative;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/*** Tur Kartları ***/

.tours-grid-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tour-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card__image img {
    transform: scale(1.1); /* Hoverda resim hafifçe büyür */
}

.tour-card__tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.tour-card__content {
    padding: 25px;
    position: relative;
}

.tour-card__icon {
    width: 50px;
    height: 50px;
    background: #fdf2ef; /* Hafif turuncu tonu */
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}

.tour-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tour-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tour-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.tour-card__link:hover {
    gap: 12px; /* Ok işareti yana doğru kayar */
}

/**** Ara Geçiş ***/

.features-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 32px;
    color: #fff;
    /* Görseldeki gibi ince bir gölge */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/** Tekne Alanı ***/

.featured-service {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.featured-service__wrapper {
    display: flex;
    align-items: center;
    gap: 60px; /* Görsel ve metin arası boşluk */
}

.featured-service__image {
    flex: 1;
    position: relative;
}

.featured-service__image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* Görselin arkasındaki dekoratif kare (opsiyonel ama modern durur) */
.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-primary); /* Turuncu */
    border-radius: 10px;
    z-index: 1;
}

.featured-service__content {
    flex: 1;
}

.featured-service__content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.featured-service__content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Siyah Buton Stili */
.btn-primary-black {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #000;
    color: #fff;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-black:hover {
    background-color: var(--color-primary); /* Hoverda turuncuya döner */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Hizmet Slider */

.hizmet-modern {
    background: #1a1a1a; /* Koyu modern arka plan */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Dekoratif Turuncu Hat */
.hizmet-decor-line {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 2px;
    height: 400px;
    background: var(--color-primary);
    transform: rotate(35deg);
    opacity: 0.6;
}

.hizmet-header {
    margin-bottom: 50px;
}

.sub-title {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.hizmet-header h2 {
    font-size: 48px;
    font-weight: 800;
}

/* --- HİZMETLER MODERN SECTION --- */
.hizmet-modern {
    padding: 80px 0;
    background: #1a1a1a; /* Görseldeki koyu tema */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hizmet-header {
    margin-bottom: 50px;
}

.sub-title {
    color: #ff4d4d; /* Vurgu rengi */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hizmet-title-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

/* Kartların Dengelenmesi */
/* Swiper Slide'ın kendisini sabitleyelim */
/* --- HİZMETLER MODERN SECTION --- */
.hizmet-modern {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Swiper Slide Konfigürasyonu - Burayı Güncelledim */
.hizmet-swiper {
    width: 100%;
    padding: 20px 0 50px 0; /* Navigasyon için alt boşluk */
}

.hizmet-swiper .swiper-slide {
    height: 450px; /* Sabit yükseklik kalsın ama genişliği Swiper belirlesin */
    display: flex;
    transition: transform 0.3s ease;
}

.modern-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #222;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 2;
}

/* Kart butonunun Görsel 1'deki gibi görünmesi için */
.card-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
/* Navigasyon Alanı */
.modern-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.nav-arrow {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}

.nav-arrow:hover {
    background: #fff;
    color: #1a1a1a;
}

.nav-pagination {
    font-family: monospace;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    width: auto !important; /* Swiper varsayılanını ezmek için */
}
/** Destinasyonlar */
.destinations-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.destinations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Galeri Tasarımı */
.destinations-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    height: 500px; /* Büyük görsel yüksekliği */
}

.gallery-item.small {
    height: 156px; /* Küçük görsellerin toplamı büyüğe eşitlenir */
}

/* İçerik Tasarımı */
.destinations-content {
    padding-left: 20px;
}

.destinations-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.destinations-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* Modern Buton */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/**** Sıkça Sorulan Sorular *****/
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.icon-box {
    width: 35px;
    height: 35px;
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding-bottom: 25px;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    max-width: 90%;
}

/* Aktif Durum */
.accordion-item.active .icon-box {
    background: var(--color-primary);
    color: #fff;
    transform: rotate(45deg); /* Artıyı çarpı yapar */
}

.accordion-item.active .accordion-content {
    max-height: 300px; /* İçerik uzunluğuna göre artırılabilir */
}

/* ============== */
/* Partner Slider */
/* ============== */

.partner-slider-section {
  display: flex;
  align-items: center;      /* Başlığı ve logoları dikeyde tam ortalar */
  justify-content: center;   /* İçeriği yatayda merkeze odaklar */
  gap: 60px;                /* Başlık ile logolar arasındaki net boşluk */
  
  margin-top: 50px;         /* Yukarıdaki alandan ayırmak için boşluk */
  padding: 30px 50px;       /* İç boşlukları artırarak ferahlatıyoruz */
  
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

.slider-title {
  font-family: 'Inter', sans-serif; /* Daha modern bir font seçimi */
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;                /* Browser'ın otomatik marginini sıfırlıyoruz */
  line-height: 1;           /* Dikey hizalamada kaymayı önlemek için */
  white-space: nowrap;
}

.slider-wrapper {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  align-items: center;      /* Wrapper içindeki track'i de ortalar */
}

.slider-track {
  display: flex;
  align-items: center;      /* Logoların hepsini aynı hizaya getirir */
  gap: 80px;
  animation: scrollLogo 25s linear infinite;
}

.slider-track img {
  height: 40px;             /* Logoları biraz daha zarif boyuta çektik */
  width: auto;
  object-fit: contain;      /* Logo oranlarını bozmaz */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.slider-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogo {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Google öneri listesi kapsayıcısı */
/* Google Öneri Listesini Genişletme ve Güzelleştirme */
.pac-container {
    width: 600px !important; /* Listenin genişliğini artırdık */
    border-radius: 12px !important;
    margin-top: 8px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18) !important;
    font-family: inherit !important;
    z-index: 9999 !important;
}

.pac-item {
    padding: 12px 16px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    font-size: 14px !important;
    border-top: 1px solid #f0f0f0 !important;
}

.pac-item:first-child { border-top: none !important; }

.pac-item-query {
    font-size: 15px !important;
    color: #222 !important;
    padding-right: 5px !important;
}

/* Alttaki "powered by Google" yazısını biraz daha kibarlaştıralım */
.pac-logo:after {
    padding: 8px !important;
}

/* Dış kapsayıcı - Sadece bu bölüme özel */
    .transfer-section-wrapper {
        width: 100%;
        padding: 50px 0;
        display: flex;
        justify-content: center;
        background-color: transparent; /* Arka planı sitene uysun diye şeffaf bıraktım */
    }

    .transfer-main-card {
        display: flex;
        align-items: center;
        max-width: 1000px;
        width: 100%;
        position: relative;
    }

    /* Görsel Alanı */
    .transfer-image-box {
        flex: 0 0 55%; /* Görsel %55 yer kaplar */
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .transfer-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Liste Kutusu (Üzerine binen beyaz alan) */
    .transfer-content-box {
        flex: 0 0 50%;
        background: #ffffff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-left: -10%; /* Görselin üzerine binmesini sağlayan kritik ayar */
        z-index: 2;
        min-height: 450px;
    }

    .transfer-title {
        text-align: center;
        font-size: 18px;
        font-weight: 800;
        color: #333;
        margin: 0 0 15px 0;
        letter-spacing: 1px;
    }

    .transfer-divider {
        width: 100%;
        height: 1px;
        background: #eee;
        margin-bottom: 25px;
    }

    .transfer-link-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .transfer-link-item {
        display: flex;
        justify-content: space-between;
        padding: 15px 10px;
        border-radius: 8px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        margin-bottom: 5px;
    }

    /* Seçili veya üzerine gelinen durum */
    .transfer-link-item:hover, .active-item {
        background-color: #f2f4f7;
    }

    .loc-from {
        color: #777;
        font-size: 14px;
        font-weight: 500;
    }

    .loc-to {
        color: #000;
        font-size: 14px;
        font-weight: 800;
    }

    .auth-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Arka planı karartma */
    backdrop-filter: blur(8px); /* Hafif bulanıklık */
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.auth-card {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: authPop 0.3s ease-out;
}

@keyframes authPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.auth-close {
    position: absolute;
    right: 20px; top: 15px;
    background: none; border: none;
    font-size: 30px; cursor: pointer; color: #999;
}

.auth-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #aaa;
    transition: 0.3s;
}

.tab-item.active {
    color: #000;
    border-bottom: 3px solid #000;
}

.auth-form-container { display: none; }
.auth-form-container.active { display: block; }

.auth-input-group { margin-bottom: 20px; text-align: left; }
.auth-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; }
.auth-input-group input {
    width: 100%; padding: 14px;
    border: 1px solid #ddd; border-radius: 10px;
    font-size: 15px; transition: 0.3s;
}
.auth-input-group input:focus { border-color: #000; outline: none; background: #fafafa; }

.auth-submit-btn {
    width: 100%; padding: 15px;
    background: #000; color: #fff;
    border: none; border-radius: 10px;
    font-weight: 700; cursor: pointer; transition: 0.3s;
}

.auth-submit-btn:hover { background: #333; }
.auth-link-alt { display: block; margin-top: 15px; color: #777; font-size: 13px; text-decoration: none; }

        .header-auth-container {
            margin-left: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .user-welcome {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
        }

        .auth-trigger-btn {
            background: #ffffff;
            color: #000000;
            border: none;
            padding: 8px 18px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }

        .auth-trigger-btn:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }

        /* Modal Stilleri */
        .auth-modal-overlay {
            display: none; 
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 999999 !important;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(4px);
        }

        .auth-modal-card {
            background: #fff;
            width: 95%;
            max-width: 400px;
            border-radius: 15px;
            padding: 30px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .auth-modal-close {
            position: absolute;
            right: 15px; top: 10px;
            background: none; border: none;
            font-size: 28px; cursor: pointer; color: #333;
        }

        .auth-modal-tabs {
            display: flex;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 25px;
        }

        .auth-tab-btn {
            flex: 1; text-align: center;
            padding: 12px; cursor: pointer;
            color: #999; font-weight: bold;
        }

        .auth-tab-btn.active {
            color: #000; border-bottom: 3px solid #000;
        }

        .auth-form-body { display: none; }
        .auth-form-body.active { display: block; }

        .auth-field { margin-bottom: 15px; text-align: left; }
        .auth-field label { display: block; font-size: 13px; margin-bottom: 5px; color: #444; font-weight: 700; }
        .auth-field input {
            width: 100%; padding: 12px;
            border: 1px solid #ddd; border-radius: 8px;
            box-sizing: border-box;
        }

        .auth-main-btn {
            width: 100%; padding: 14px;
            background: #000; color: #fff;
            border: none; border-radius: 8px;
            font-weight: bold; cursor: pointer; 
            margin-top: 10px; font-size: 16px;
        }