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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.top-bar {
    height: 4px;
    background: linear-gradient(90deg, #81b29a 0%, #4ecdc4 100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: none; /* Logo görseli varsa metni gizle */
}

.logo h1 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 5px;
}

.logo .site-url {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-currency {
    display: flex;
    gap: 10px;
}

.lang-btn, .currency-btn {
  overflow: hidden;
  position: relative;
  background: transparent !important;
  border: 1px solid rgba(212,175,55,0.4) !important;
  color: #fff !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.3s !important;
}

.lang-btn:hover, .currency-btn:hover {
    background: rgba(255,255,255,0.3);
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
    margin: 0;
    max-width: 24px;
    max-height: 18px;
}

.rezervasyon-sorgula-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f5e28a 100%) !important;
    color: #0b0b0c !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3) !important;
    text-decoration: none !important;
}

.rezervasyon-sorgula-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
    background: linear-gradient(135deg, #f5e28a 0%, #d4af37 100%) !important;
}

/* Slider Section */
.slider-section {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slider-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}

.slider-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slider-content .slider-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.slider-content .slider-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f5d77a 100%);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.slider-content .slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.6);
    background: linear-gradient(135deg, #f5d77a 0%, #d4af37 100%);
}

@media (max-width: 768px) {
    .slider-content {
        padding: 0 20px;
    }
    
    .slider-content h1 {
        font-size: 32px;
    }
    
    .slider-content .slider-subtitle {
        font-size: 18px;
    }
    
    .slider-content .slider-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.slider-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.slider-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slider-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 400;
}

.slider-features {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.slider-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.slider-features i {
    color: #ffd700;
    font-size: 18px;
}

.slider-btn {
    display: inline-block;
    background: #fff;
    color: #6c5ce7;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #f8f9ff;
}

.slider-image-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.slider-image-placeholder i {
    font-size: 120px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    display: block;
}

.slider-image-placeholder p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 600;
}

/* Rezervasyon Form Section */
.rezervasyon-form-section {
    background: #f5f5f5;
    padding: 50px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.rezervasyon-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 1400px;
    margin: 0 auto 30px;
}

/* Tabs */
.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn.active {
    color: #6c5ce7;
    border-bottom-color: #6c5ce7;
}

.tab-btn:hover {
    color: #6c5ce7;
}

/* Form Row */
.rezervasyon-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: end;
    margin-bottom: 20px;
}

/* Yeni arama butonu satırı */
.form-row-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.form-row-search .search-btn-group {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.form-row-search .btn-search-large {
    width: 100%;
    max-width: 800px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.form-row-search .btn-search-large span {
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
}

/* Desktop'ta yolcu selector daha geniş */
@media (min-width: 769px) {
    .rezervasyon-form .form-row {
        grid-template-columns: 2fr 2fr 1fr;
        gap: 15px;
    }
    
    /* Büyük form grupları (Nereden, Nereye) - yolculara yaklaştır */
    .form-group-large {
        flex: 1;
    }
    
    /* Yolcu form-group'unu sol hizala */
    .form-group-yolcu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-group-yolcu label {
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    
    .yolcu-selector {
        min-width: 250px;
        max-width: 300px;
        padding: 12px 18px;
        gap: 15px;
        margin-left: 0;
        width: 100%;
        height: 54px;
    }
    
    .yolcu-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        max-width: 38px;
        font-size: 18px;
    }
    
    .yolcu-count {
        white-space: nowrap;
        min-width: 100px;
        max-width: 180px;
        padding: 0 10px;
        overflow: visible;
        text-overflow: clip;
        font-size: 16px;
        font-weight: 700;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.form-group label {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.input-hint {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* Select dropdown stilleri - input-with-icons ile aynı görünüm */
.select-with-icons {
    position: relative;
    display: flex;
    align-items: center;
}

.select-with-icons .custom-select {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-with-icons .custom-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.select-with-icons .custom-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.select-with-icons .input-icon-left,
.select-with-icons .input-icon-right {
    position: absolute;
    color: #d4af37;
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

.select-with-icons .input-icon-left {
    left: 15px;
}

.select-with-icons .input-icon-right {
    right: 15px;
}

.input-with-icons {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-left {
    position: absolute;
    left: 15px;
    color: #6c5ce7;
    font-size: 16px;
    z-index: 2;
}

.input-icon-right {
    position: absolute;
    right: 15px;
    color: #999;
    font-size: 14px;
    z-index: 2;
}

.form-group input {
    width: 100%;
    padding: 15px 45px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px; /* iOS Safari zoom engellemek için 16px (15px yerine) */
    transition: all 0.3s;
    background: #fff;
    color: #333;
    height: 52px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* Yolcu Selector */
.yolcu-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    height: 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 240px;
    flex-shrink: 0;
    margin-left: auto;
    justify-self: end;
}

.yolcu-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    border: none;
    background: #6c5ce7;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
}

.yolcu-btn:hover:not(:disabled) {
    background: #5a4fcf;
    transform: scale(1.1);
}

.yolcu-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Mobile buton yayılma sorunu düzeltmesi */
@media (max-width: 768px) {
    .rezervasyon-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group-large {
        width: 100%;
    }
    
    .form-group-yolcu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }
    
    .yolcu-selector {
        gap: 10px;
        padding: 8px 12px;
        height: 48px;
        width: 100%;
        max-width: 240px;
        min-width: auto;
        margin-left: auto;
    }
    
    .yolcu-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        max-width: 32px;
        font-size: 16px;
    }
    
    .yolcu-count {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
        text-align: center;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        padding: 0 8px;
        font-size: 14px;
    }
    
    .form-row-search {
        margin-top: 15px;
    }
    
    .form-row-search .search-btn-group {
        width: 100%;
        max-width: 100%;
    }
    
    .btn-search-large {
        width: 100%;
        max-width: 100%;
        padding: 14px 10px;
        font-size: 11px;
        white-space: nowrap;
        line-height: 1.2;
        overflow: visible;
        text-overflow: clip;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    
    .btn-search-large:hover {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5) !important;
        transform: translateY(-2px);
    }
    
    .btn-search-large span {
        display: inline-block;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        color: #ffffff !important;
        flex-shrink: 0;
        font-size: 15px;
    }
    
    .btn-search-large i {
        color: #ffffff !important;
        flex-shrink: 0;
        font-size: 14px;
    }
    
    /* Yolcu mobilde düzenle */
    .form-group-yolcu {
        width: 100%;
        align-items: flex-start !important;
    }
    
    .form-group-yolcu label {
        width: 100%;
        text-align: left !important;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .yolcu-selector {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        padding: 14px 18px !important;
        gap: 15px !important;
        height: 56px !important;
    }
    
    .yolcu-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        font-size: 20px !important;
    }
    
    .yolcu-count {
        font-size: 16px !important;
        min-width: 110px !important;
        max-width: 200px !important;
        font-weight: 700 !important;
        padding: 0 12px !important;
    }
}

.yolcu-btn.minus {
    background: #e74c3c;
    color: #fff;
}

.yolcu-btn.minus:hover {
    background: #c0392b;
}

.yolcu-count {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    min-width: 80px;
    max-width: 120px;
    padding: 0 8px;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    cursor: default;
}

/* Search Button */
.search-btn-group {
    display: flex;
    align-items: flex-end;
}

.btn-search-large {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
    width: 100%;
    max-width: 600px;
    text-transform: none;
    letter-spacing: 0.5px;
    min-height: 52px;
    height: auto;
    box-sizing: border-box;
    text-align: center;
}

.btn-search-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.map-container {
    max-width: 1400px;
    margin: 30px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #f0f0f0;
}

#harita {
    border-radius: 15px;
    width: 100%;
    min-height: 400px;
    height: 400px;
}


/* Bölgeler Fiyat Section */
.bolgeler-fiyat-section {
    background: #fff;
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #333;
    font-size: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    font-style: italic;
}

.see-all-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.see-all-link:hover {
    color: #a29bfe;
}

.bolge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bolge-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: none;
}

.bolge-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bolge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.2);
    border: none !important;
    opacity: 1 !important;
    outline: none !important;
}

/* Hover'da siliklik olmasın */
.bolge-card:hover .bolge-info {
    opacity: 1 !important;
    background: #fff !important;
}

.bolge-card:hover .bolge-name-overlay {
    opacity: 1 !important;
}

.bolge-image {
    position: relative;
    width: 100%;
    padding-bottom: 70%; /* 16:9 benzeri aspect ratio */
    overflow: hidden;
    height: 0;
}

.bolge-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bolge-card:hover .bolge-image img {
    transform: scale(1.05);
}

.location-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #6c5ce7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bolge-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px 15px 15px 15px;
    z-index: 2;
}

.bolge-name-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.bolge-info {
    padding: 20px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.current-price {
    color: #6c5ce7;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Sistem Nasıl Çalışır Section */
.sistem-nasil-calısır-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    padding: 80px 0;
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-header-center p {
    color: #fff;
    font-size: 18px;
    opacity: 0.95;
}

.adimlar-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}

.adim-card {
    text-align: center;
}

.adim-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.adim-card:nth-child(1) .adim-icon {
    background: #ffc107;
}

.adim-card:nth-child(2) .adim-icon {
    background: #dc3545;
}

.adim-card:nth-child(3) .adim-icon {
    background: #17a2b8;
}

.adim-card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.adim-card p {
    color: #666;
    font-size: 14px;
}

/* Blog Section */
.blog-section {
    background: #fff;
    padding: 60px 0;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Ana sayfada 3'lü grid */
@media (max-width: 1200px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #6c5ce7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-btn {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #a29bfe;
}

/* Footer */
.main-footer {
    background: #f8f9fa;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1400px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-destinations {
    columns: 2;
    column-gap: 20px;
}

.footer-destinations li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.footer-column h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6c5ce7;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.payment-secure {
    display: flex;
    gap: 10px;
}

.payment-secure img {
    height: 40px;
    width: auto;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-options span {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact-info i {
    color: #6c5ce7;
    margin-top: 3px;
}

.whatsapp-btn a {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.whatsapp-btn a:hover {
    background: #20ba5a;
}

.footer-bottom {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-keywords {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.footer-keywords p {
    color: #ccc;
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 10px 0;
}

.footer-keywords strong {
    color: #fff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rezervasyon-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .rezervasyon-form-card {
        padding: 25px;
    }
    
    .form-tabs {
        flex-wrap: wrap;
    }
    
    .btn-search-large {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-destinations {
        columns: 1;
    }
    
    .adimlar-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .adimlar-container {
        grid-template-columns: 1fr;
    }
    
    .bolge-cards,
    .blog-cards {
        grid-template-columns: 1fr;
    }
}



/* Rezervasyon Bilgilendirme Notu */
.rezervasyon-bilgi-notu{
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rezervasyon-bilgi-notu .kirmizi{
  color: #e74c3c;
  font-weight: 600;
}

/* ====== MOBİL HAMBURGER BUTON ====== */
.menu-toggle{
  display:none;                 /* desktop'ta kapalı */
  width:44px;
  height:44px;
  border:0;
  background:rgba(255,255,255,0.18);
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
}

/* header-actions içinde hizalama düzgün olsun */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ====== SAĞDAN KAYAN MOBİL MENÜ (DRAWER) ====== */
.mobile-menu{
  position:fixed;
  top:0;
  right:-320px;                 /* kapalı */
  width:320px;
  max-width:85vw;
  height:100vh;
  background:#fff;
  box-shadow:-12px 0 30px rgba(0,0,0,0.15);
  z-index:9999;
  padding:18px;
  transition:right .25s ease;
}

.mobile-menu.open{
  right:0;                      /* açık */
}

.mobile-close{
  border:0;
  background:transparent;
  font-size:34px;
  cursor:pointer;
  line-height:1;
  margin-left:auto;
  display:block;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:16px;
}

.mobile-nav a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  padding:10px 12px;
  border-radius:10px;
  background:#f4f5f7;
}

/* rezervasyon butonu */
.btn-res{
  display:block;
  text-align:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius:999px;
  background:#6c5ce7;
  color:#fff;
  font-weight:700;
  margin-top:16px;
}

/* ====== ARKADAKİ KARARTI (BACKDROP) ====== */
.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:9998;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease;
}

.menu-backdrop.show{
  opacity:1;
  visibility:visible;
}

/* ====== RESPONSIVE: mobilde üst menü kapanacak, hamburger açılacak ====== */
@media (max-width: 900px){
  .main-nav{ display:none !important; }     /* mobilde üst menü gizle */
  .menu-toggle{ display:flex !important; } /* mobilde hamburger göster */
}
@media (max-width: 900px){
  /* Mobilde üstteki aksiyonları (para + rezervasyon) sakla */
  .header-actions .lang-currency,
  .header-actions .rezervasyon-sorgula-btn{
    display:none !important;
  }

  /* Mobil menü içindeki aksiyonlar */
  .mobile-actions{
    display:flex;
    gap:10px;
    align-items:center;
    margin-top:16px;
  }

  .mobile-currency{
    width:48px;
    height:44px;
    border-radius:12px;
  }
}
.menu-toggle{
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}
.main-header { position: sticky; top: 0; z-index: 10050; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-actions { position: relative; z-index: 10051; }

.menu-toggle{
  position: relative;
  z-index: 10052;
  pointer-events: auto;
}
/* =========================
   MOBILE HEADER FIX (override)
   ========================= */
@media (max-width: 900px) {

  /* wrap kapat -> logo + hamburger aynı satır */
  .header-container{
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  /* logo satırı taşmasın */
  .logo{
    flex: 1 1 auto;
    min-width: 0; /* çok önemli: taşmayı engeller */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .logo-link {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }
  
  .logo-image {
    height: 50px !important;
    max-width: 220px !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  .logo h1{
    margin: 0 !important;          /* alttaki boşluğu sıfırla */
    font-size: 20px !important;     /* mobilde küçült */
    line-height: 1.1 !important;
    white-space: nowrap;            /* tek satır */
    overflow: hidden;
    text-overflow: ellipsis;        /* sığmazsa ... */
  }

  /* header-actions sadece hamburger kalsın ve sağa yaslansın */
  .header-actions{
    margin-left: auto !important;
    flex: 0 0 auto;
    gap: 10px !important;
  }

  /* mobilde aksiyonları zaten gizliyorsun, tekrar garanti */
  .header-actions .lang-currency,
  .header-actions .rezervasyon-sorgula-btn{
    display:none !important;
  }

  /* hamburger görünür olsun */
  .menu-toggle{
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.28) !important; /* daha belirgin */
    border: 1px solid rgba(255,255,255,0.35);
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .menu-toggle span{
    width: 22px;
    height: 2.5px;                 /* biraz kalın */
    background: #fff !important;
    border-radius: 3px;
    opacity: 1 !important;
  }
}
/* drawer içeriği taşarsa kaydır */
.mobile-menu{
  overflow-y: auto;
  padding-top: 52px; /* üstte close için alan */
}

/* Kapat butonunu hep sağ üstte sabitle */
.mobile-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* linkler daha düzenli */
.mobile-nav a{
  background:#f4f5f7;
  border: 1px solid #eef0f3;
}

/* alttaki rezervasyon butonu biraz daha premium */
.btn-res{
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 999px;
}
/* =========================
   MOBİL HEADER FIX (EN SONA EKLE)
   ========================= */

/* 1) Hamburger çizgileri ALT ALTA olsun */
.menu-toggle{
  display:flex;              /* önemli */
  flex-direction: column;    /* <<< ALT ALTA */
  gap:6px;                   /* çizgiler arası */
  width:44px;
  height:44px;
  border:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(255,255,255,0.22);   /* biraz daha belirgin */
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:2px;
  opacity:1;
}

/* 2) Mobilde LOGO + HAMBURGER aynı satır, aynı hiza */
@media (max-width: 900px){
  .header-container{
    display:flex;
    flex-direction: row !important;   /* <<< column'u ez */
    flex-wrap: nowrap !important;     /* <<< alta düşme yok */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;               /* mobil daha sıkı */
  }

  /* Logo ortada kalsın ve büyük olsun */
  .logo{
    flex: 1;
    text-align: center;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .logo-link {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }
  
  .logo-image {
    height: 50px !important;
    max-width: 220px !important;
    width: auto !important;
    margin: 0 auto !important;
  }
  .logo h1{
    margin: 0;                        /* <<< alttaki boşluğu bitir */
    font-size: 20px;                  /* mobilde taşmasın */
    line-height: 1.1;
  }

  /* Hamburger sağda kalsın */
  .header-actions{
    flex: 0 0 auto;
    gap: 10px;
  }

  /* Mobilde üst menü yok, hamburger var */
  .main-nav{ display:none !important; }
  .menu-toggle{ display:flex !important; }

  /* Mobilde TR/₺ ve Rezervasyon butonu header’da saklı kalsın */
  .header-actions .lang-currency,
  .header-actions .rezervasyon-sorgula-btn{
    display:none !important;
  }
}
/* ✅ Hamburger çizgileri alt alta */
.menu-toggle{
  display:flex;
  flex-direction:column;   /* <-- EN ÖNEMLİSİ */
  justify-content:center;
  align-items:center;
  gap:6px;
}
/* ✅ Mobil header: logo sol, hamburger sağ */
@media (max-width: 900px){
  .header-container{
    flex-direction:row !important;   /* column'u ez */
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:12px !important;
    padding:14px 16px;               /* biraz küçült */
  }

  .logo h1{
    font-size:18px;                  /* mobilde taşmasın */
    margin:0;
    white-space:nowrap;
  }

  .header-actions{
    margin-left:auto;
  }
}
/* ✅ Menü her şeyin önünde olsun */
.mobile-menu{ z-index: 20000 !important; }
.menu-backdrop{ z-index: 19999 !important; }

/* Header'ı menünün altına çek (gerekirse) */
.main-header{ z-index: 1000 !important; }
/* ====== HAMBURGER SADECE MOBİL + TABLET ====== */
/* Desktop: hamburger kapalı */
.menu-toggle{
  display: none !important;
}

/* Tablet + mobil: hamburger açık */
@media (max-width: 1024px){
  .menu-toggle{
    display: flex !important;
    flex-direction: column; /* çizgiler alt alta */
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  /* mobil/tablette üst menü gizli */
  .main-nav{ display:none !important; }

  /* mobil/tablette header sağ aksiyonlar gizli (istersen bunu kaldırırız) */
  .header-actions .rezervasyon-sorgula-btn{
    display:none !important;
  }
}
/* ====== PREMIUM MOBİL MENÜ ====== */
.mobile-menu{
  border-radius: 18px 0 0 18px;
}

.mobile-nav a{
  background: #f6f7fb;
  border: 1px solid #eef0f6;
}

.mobile-nav a:hover{
  background: #eef0ff;
  border-color: #dcd7ff;
}

/* Dil + Para pill */
.mobile-lang-currency{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.mobile-pill{
  flex: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #eef0f6;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

.mobile-pill .flag-icon{
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  margin: 0;
  max-width: 24px;
  max-height: 18px;
}

.mobile-pill i{
  font-size: 12px;
  opacity: .6;
}
.logo-link{
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* ✅ VIP Premium Giriş */
.vip-intro{
  background:#fff;
  border-radius:16px;
  padding:22px 24px;
  margin-bottom:20px;
  box-shadow:0 8px 30px rgba(0,0,0,0.08);
  border:1px solid rgba(108,92,231,0.10);
}

.vip-intro h2{
  margin:0 0 10px 0;
  font-size:22px;
  font-weight:800;
  color:#6c5ce7;
}

.vip-intro p{
  margin:0 0 14px 0;
  font-size:14px;
  line-height:1.7;
  color:#444;
}

.vip-intro-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}

.vip-intro-badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#f5f3ff;
  color:#3f2fbf;
  border:1px solid rgba(108,92,231,0.18);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}

.vip-intro-badges i{
  color:#6c5ce7;
}
/* Mobil menü open olunca göster */
@media (max-width: 768px){
  .nav-menu, .nav-links, .main-nav{
    display:none;
  }
  .nav-menu.open, .nav-links.open, .main-nav.open{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
}
/* Slider altındaki gereksiz boşluğu kırp */
.slider-section,
.hero,
.slider,
.main-slider {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Rezervasyon formunun yukarıdan boşluğunu sıfırla */
.rezervasyon-form,
.rezervasyon-form-wrapper,
.booking-section,
#rezervasyon-form,
.vip-transfer-form {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Form kartını slider'a biraz yaklaştır (isteğe bağlı) */
.rezervasyon-form-container,
.booking-container,
.vip-transfer-card {
  margin-top: -40px;              /* boşluğu kapatır */
  position: relative;
  z-index: 20;
}

@media (max-width: 768px){
  .rezervasyon-form-container,
  .booking-container,
  .vip-transfer-card {
    margin-top: -20px;            /* mobilde daha az overlap */
  }
}

/* Form bölümünü slider'a yaklaştır (boşluğu kapatır) */
.rezervasyon-form-section{
  padding-top: 0 !important;
  margin-top: -60px !important;   /* ↑ yukarı çeker */
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Kartın alt boşluğunu da kıs */
.rezervasyon-form-card{
  margin-bottom: 10px !important;
}

/* Harita ile kart arası boşluğu azalt */
.map-container{
  margin-top: 10px !important;
}

/* Mobilde daha az çek */
@media (max-width: 768px){
  .rezervasyon-form-section{
    margin-top: -35px !important;
  }
}
.vip-intro{
  text-align:center;
  margin: 0 0 18px 0;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  border: 1px solid rgba(108,92,231,.12);
}

.vip-intro h2{
  margin:0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #6c5ce7;
  line-height: 1.2;
}

/* Altına şık çizgi */
.vip-intro h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg,#6c5ce7,#a29bfe);
}

/* Mobilde daha kompakt */
@media (max-width:768px){
  .vip-intro{ padding: 12px 14px; }
  .vip-intro h2{ font-size: 18px; }
}
/* ✅ Desktop slider büyüt (mobil aynı kalsın) */
.slider-section,
.hero,
.slider,
.main-slider {
  height: 620px;            /* masaüstü büyüklük */
  min-height: 620px;
}

/* slider içindeki içerik ortalansın */
.slider-content{
  height: 100%;
  display: flex;
  align-items: center;
}

/* ✅ Mobilde eski haline dön (dokunma) */
@media (max-width: 768px){
  .slider-section,
  .hero,
  .slider,
  .main-slider {
    height: 450px;          /* sende mobilde görünen değer neyse o */
    min-height: 450px;
  }
}
/* =========================
   HERO WRAPPER + FORM OVERLAY
   ========================= */
.hero-wrapper{
  position: relative;
  overflow: hidden;
}

/* Desktop slider büyüsün */
.hero-wrapper .slider-section{
  height: clamp(520px, 60vh, 720px);
  min-height: 520px;
}

/* Mobil aynı kalsın */
@media (max-width: 768px){
  .hero-wrapper .slider-section{
    height: 450px;
    min-height: 450px;
  }
}

/* Form slider üstüne gelsin */
.form-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;              /* slider altından biraz taşsın */
  z-index: 50;
}

/* Mobilde taşma az olsun */
@media (max-width: 768px){
  .form-overlay{
    bottom: -35px;
  }
}

/* Overlay form section artık arkaplan/padding vermesin */
.rezervasyon-form-section.overlay-mode{
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Kart glass/şeffaf olsun */
.rezervasyon-form-section.overlay-mode .rezervasyon-form-card{
  background: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* Slider altındaki sonraki sectionlar formun altına düzgün otursun */
.hero-wrapper + section,
.hero-wrapper ~ section{
  position: relative;
  z-index: 1;
}

/* Form slider üstüne geldiği için sayfada aşağıya boşluk ekle */
.hero-wrapper{
  padding-bottom: 120px; /* desktop */
}
@media (max-width: 768px){
  .hero-wrapper{
    padding-bottom: 70px;  /* mobil */
  }
}

/* VIP başlık daha premium + ortalı */
.vip-intro{
  text-align:center;
  margin: 0 0 18px 0;
  padding: 14px 16px;
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  border: 1px solid rgba(108,92,231,.14);
}

.vip-intro h2{
  margin:0;
  font-size: 22px;
  font-weight: 900;
  color: #6c5ce7;
  letter-spacing: .3px;
  line-height: 1.2;
}

.vip-intro h2::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  margin:10px auto 0;
  border-radius:999px;
  background: linear-gradient(90deg,#6c5ce7,#a29bfe);
}

@media (max-width:768px){
  .vip-intro h2{ font-size:18px; }
}
/* Slider içini ortala */
.slider-center-only{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Buton tam ortada dursun */
.slider-btn-center{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 18px 52px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
}

/* Mobil aynı kalsın (istersen daha küçük yapalım) */
@media (max-width:768px){
  .slider-btn-center{
    padding: 14px 34px;
    font-size: 16px;
  }
}
/* ====== SLIDER ALT SCROLL (premium + yavaş) ====== */
.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  user-select: none;
  z-index: 30;
  opacity: .95;
}

.scroll-down .txt{
  font-size: 13px;
  text-transform: uppercase;
  opacity: .92;
}

.scroll-down .chev{
  font-size: 18px;
  opacity: .55;
}

/* Ok şekli */
.scroll-down .arrow{
  width: 10px;
  height: 10px;
  border-right: 3px solid rgba(255,255,255,.95);
  border-bottom: 3px solid rgba(255,255,255,.95);
  transform: rotate(45deg);
  margin-left: 2px;
  opacity: .95;
}

/* ✅ Yavaş “float” efekti (premium) */
.scroll-down{
  animation: sdFloat 2.4s ease-in-out infinite;
}

@keyframes sdFloat{
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .78; }
  50%     { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Hover: hafif büyüsün, glow gibi */
.scroll-down:hover{
  opacity: 1;
}

.scroll-down:hover .arrow{
  transform: rotate(45deg) scale(1.06);
}

/* Mobilde biraz yukarı */
@media (max-width:768px){
  .scroll-down{ bottom: 16px; }
  .scroll-down .txt{ font-size: 12px; }
}
/* ===== Desktop Slider Alt Buton (Rezervasyon Oluştur) ===== */
.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 80px;                 /* biraz daha alta */
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  user-select: none;
}

/* ok ikon */
.scroll-down .scroll-ico{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 16px;
  line-height: 1;
}

/* hover efekti */
.scroll-down:hover{
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 14px 32px rgba(0,0,0,0.24);
}

/* hafif "nefes alma" animasyonu */
@keyframes scrollPulse{
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-3px); }
}
.scroll-down{
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Slider içinde absolute düzgün çalışsın */
.slider-background{
  position: relative;
}

/* ✅ MOBİLDE GİZLE */
@media (max-width: 768px){
  .scroll-down{ display:none !important; }
}
/* =========================
   HERO SLIDER (5 slide)
   ========================= */
.slider-section{
  position: relative;
  width: 100%;
  height: calc(100vh - 84px); /* header yüksekliğine göre */
  min-height: 520px;
  overflow: hidden;
}

.slider-container{
  position: relative;
  width: 100%;
  height: 100%;
}

/* slide’lar üst üste */
.slider-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 1.2s ease;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-slide.active{
  opacity: 1;
  transform: scale(1);
}

/* görsel üstüne hafif premium karartı */
.slider-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(80% 80% at 50% 60%, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.45) 100%);
}

/* ✅ Buton: alt-orta ama yukarıda (≈ 4 cm) */
.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 80px;                /* 4 cm yukarı */
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform .25s ease, background .25s ease;
  z-index: 5;
}
.scroll-down:hover{
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255,255,255,0.22);
}

.scroll-ico{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 14px;
  line-height: 1;
}

/* Dots (istersen) */
.slider-dots{
  position:absolute;
  left:50%;
  bottom: 26px;
  transform: translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.slider-dots button{
  width:8px;height:8px;border-radius:999px;
  border:0; cursor:pointer;
  background: rgba(255,255,255,0.35);
}
.slider-dots button.active{
  background: rgba(255,255,255,0.95);
  width: 18px;
}

/* ✅ Mobil: slider boyu + mobil görsel + BUTON GİZLİ */
@media (max-width: 768px){
  .slider-section{
    height: 60vh;
    min-height: 420px;
  }
  .slider-slide{
    background-image: var(--bgm);
  }
  .scroll-down{
    display:none !important; /* mobilde buton yok */
  }
}
/* =========================
   DESKTOP: FORM SLIDER İÇİNDE (OVERLAY)
   ========================= */
.hero-wrapper{
  position: relative;
}

/* Slider yüksekliği: header yüksekliğine göre */
@media (min-width: 1025px){
  .slider-section{
    height: calc(100vh - var(--headerH, 140px));
    min-height: 620px;
  }
}

/* Form overlay: slider içinde alt kısımda dursun */
@media (min-width: 1025px){
  .form-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;            /* ✅ formun slider içinde ne kadar aşağıda olacağı */
    z-index: 60;
    pointer-events: none;    /* overlay div tıklamayı engellemesin */
  }

  /* Form kartı tıklanabilir olsun */
  .form-overlay .rezervasyon-form-card{
    pointer-events: auto;
  }

  /* Overlay modunda section arkaplan/padding sıfır */
  .form-overlay .rezervasyon-form-section{
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Kartı “premium” ve şeffaf yap */
  .form-overlay .rezervasyon-form-card{
    max-width: 1400px;
    margin: 0 auto;
   
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }

  /* Desktop'ta map’i overlay içinde göstermeyelim (istersen sonra alt section’a alırız) */

  /* Form overlay olduğu için sayfa akışında altta boşluk bırak */
  .hero-wrapper{
    padding-bottom: 170px; /* formun kapladığı alan kadar boşluk */
  }
}

/* Mobilde hiç karışma: form normal yerde kalsın */
@media (max-width: 1024px){
  .form-overlay{
    position: static;
    pointer-events: auto;
  }
  .hero-wrapper{
    padding-bottom: 0;
  }
}
/* =========================
   FORM KARTINI ÜSTTEN/ALTTAN KÜÇÜLT (COMPACT)
   ========================= */

/* Section padding azalt */
.rezervasyon-form-section{
  padding: 18px 0 !important;   /* 50px -> 18px */
}

/* Kartın iç paddingini azalt */
.rezervasyon-form-card{
  padding: 18px 22px !important; /* 40px -> 18px */
  margin-bottom: 12px !important; /* 30px -> 12px */
  border-radius: 18px; /* biraz daha şık */
}

/* Başlığı küçült */
.vip-intro{
  padding: 10px 12px !important;   /* 16-22 -> 10 */
  margin-bottom: 10px !important;  /* 18-20 -> 10 */
}

/* Başlık boyutu küçült */
.vip-intro h2{
  font-size: 18px !important; /* 22 -> 18 */
}

/* Başlık alt çizgisi biraz küçülsün */
.vip-intro h2::after{
  width: 58px !important;
  height: 3px !important;
  margin-top: 8px !important;
}

/* Input yüksekliği biraz küçülsün */
.form-group input{
  height: 46px !important;     /* 52 -> 46 */
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Yolcu alanı yüksekliği küçülsün */
.yolcu-selector{
  height: 50px !important;
  padding: 10px 15px !important;
  gap: 12px !important;
  max-width: 240px !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  justify-self: end !important;
}

/* Ara butonu yüksekliği küçülsün */
.btn-search-large{
  height: 46px !important;     /* 52 -> 46 */
  font-size: 16px !important;  /* 18 -> 16 */
}

/* Bilgi notu daha az yer kaplasın */
.rezervasyon-bilgi-notu{
  margin-top: 10px !important; /* 20 -> 10 */
  font-size: 13px !important;
}
/* =========================
   HEADER ALTTAN KISALT (COMPACT)
   ========================= */

/* Header iç boşluklarını küçült */
.header-container{
  padding: 10px 30px !important;  /* 20px 30px -> 10px 30px */
}

/* Logo yazısının alt boşluğunu kaldır */
.logo h1{
  margin-bottom: 0 !important;
  line-height: 1.05 !important;
}

/* Site url varsa daha sıkı */
.logo .site-url{
  margin-top: 2px !important;
  line-height: 1.1 !important;
}

/* Menü ve sağ aksiyonları da sıkılaştır */
.main-nav ul{
  gap: 18px !important;  /* 25 -> 18 */
}

.rezervasyon-sorgula-btn{
  padding: 10px 22px !important; /* 12x25 -> 10x22 */
}

/* İstersen en üst ince çizgiyi de biraz incelt */
.top-bar{
  height: 3px !important; /* 4 -> 3 */
}
/* =========================================================
   PREMIUM DARK THEME (BLACK + GOLD)  ✅ EN SONA EKLE
   ========================================================= */

:root{
  --bg: #070708;          /* sayfa ana siyah */
  --panel: #0f1012;       /* kart/section koyu */
  --panel2:#121318;
  --border: rgba(255,255,255,.10);
  --text: #e9e9ea;        /* yazı açık */
  --muted:#b9b9be;
  --gold:#d4af37;         /* altın */
  --gold2:#ffdf7e;        /* açık altın */
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);
}

/* BODY */
body{
  background: radial-gradient(1200px 600px at 50% 0%, rgba(212,175,55,.08), transparent 60%), var(--bg) !important;
  color: var(--text) !important;
}

/* Genel yazı renkleri */
h1,h2,h3,h4,h5,h6{ color: var(--text) !important; }
p,span,li{ color: var(--muted); }

/* container max genişlik kalsın */
.container{}

/* =========================
   HEADER (Siyah + altın çizgi)
   ========================= */
.main-header{
  background: linear-gradient(180deg, #0a0a0c 0%, #0d0e10 100%) !important;
  border-bottom: 1px solid rgba(212,175,55,.18);
  position: sticky !important;
  top: 0 !important;
  z-index: 10050 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.top-bar{
  height: 3px !important;
  background: linear-gradient(90deg, rgba(212,175,55,.65), rgba(255,223,126,.35)) !important;
}

.logo h1{
  color: #fff !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.55) !important;
}

.logo .site-url{ color: rgba(255,255,255,.70) !important; }

/* Menü linkleri */
.main-nav a{
  color: rgba(255,255,255,.86) !important;
}
.main-nav a:hover{
  color: var(--gold2) !important;
  opacity: 1 !important;
}

/* Dil/para butonları */
.lang-btn, .currency-btn{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(212,175,55,.20) !important;
  color: #fff !important;
}
.lang-btn:hover, .currency-btn:hover{
  background: rgba(212,175,55,.12) !important;
}

/* Rezervasyon Sorgula butonu (gold) */
.rezervasyon-sorgula-btn{
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: #0b0b0c !important;
  box-shadow: 0 12px 26px rgba(212,175,55,.22) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.rezervasyon-sorgula-btn:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 40px rgba(212,175,55,.28) !important;
}

/* =========================
   SLIDER üst karartı (daha premium)
   ========================= */
.slider-overlay{
  background: radial-gradient(80% 80% at 50% 60%, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.62) 70%, rgba(0,0,0,0.78) 100%) !important;
}

/* slider buton varsa gold yap */
.slider-btn, .slider-btn-center{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
  color: #0b0b0c !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 16px 36px rgba(212,175,55,.22) !important;
}
.slider-btn:hover, .slider-btn-center:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 50px rgba(212,175,55,.28) !important;
}

/* =========================
   FORM (Rezervasyon Kartı) - koyu panel + altın detay
   ========================= */
.rezervasyon-form-section{
  background: transparent !important;
}

.rezervasyon-form-card{
  background: linear-gradient(180deg, rgba(18,19,24,.92), rgba(14,15,18,.92)) !important;
  border: 1px solid rgba(212,175,55,.18) !important;
  box-shadow: var(--shadow) !important;
}

/* VIP başlık alanı */
.vip-intro{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(212,175,55,.18) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.45) !important;
}
.vip-intro h2{
  color: #fff !important;
}
.vip-intro h2::after{
  background: linear-gradient(90deg, var(--gold), var(--gold2)) !important;
}

/* Label */
.form-group label{
  color: rgba(255,255,255,.80) !important;
}

/* Input */
.form-group input{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
}
.form-group input::placeholder{
  color: rgba(255,255,255,.45) !important;
}
.form-group input:focus{
  border-color: rgba(212,175,55,.75) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,.14) !important;
}

/* Input ikonları */
.input-icon-left{
  color: var(--gold) !important;
}
.input-icon-right{
  color: rgba(255,255,255,.55) !important;
}

/* Yolcu selector */
.yolcu-selector{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}
.yolcu-count{
  color: rgba(255,255,255,.85) !important;
}

/* + / - butonları */
.yolcu-btn{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
  color: #0b0b0c !important;
  box-shadow: 0 10px 20px rgba(212,175,55,.20) !important;
}
.yolcu-btn:hover{
  transform: scale(1.06) !important;
}
.yolcu-btn.minus{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.85) !important;
}
.yolcu-btn.minus:hover{
  background: rgba(212,175,55,.12) !important;
}

/* ARA butonu (gold) */
.btn-search-large{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
  color: #0b0b0c !important;
  box-shadow: 0 18px 38px rgba(212,175,55,.22) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.btn-search-large:hover{
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 100%) !important;
  box-shadow: 0 26px 55px rgba(212,175,55,.28) !important;
}

/* Bilgi notu */
.rezervasyon-bilgi-notu span{
  color: rgba(255,255,255,.68) !important;
}
.rezervasyon-bilgi-notu .kirmizi{
  color: var(--gold2) !important; /* kırmızı yerine premium altın */
}

/* Harita alanı */
.map-container{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: var(--shadow2) !important;
}

/* =========================
   BÖLGELER / KARTLAR (premium siyah)
   ========================= */
.bolgeler-fiyat-section,
.blog-section{
  background: transparent !important;
  padding-top: 60px;
}

.section-header h2{
  color: #fff !important;
}
.section-subtitle{
  color: rgba(255,255,255,.65) !important;
}

/* See all link gold */
.see-all-link{
  color: var(--gold2) !important;
}
.see-all-link:hover{
  color: var(--gold) !important;
}

/* Bolge card */
.bolge-card{
  background: linear-gradient(180deg, rgba(18,19,24,.92), rgba(14,15,18,.92)) !important;
  border: none !important;
  box-shadow: var(--shadow2) !important;
}
.bolge-card:hover{
  border: none !important;
  box-shadow: 0 22px 60px rgba(212,175,55,.12) !important;
  outline: none !important;
}

/* Hover'da siliklik olmasın - opacity ve background değişikliklerini engelle */
.bolge-card:hover .bolge-info,
.bolge-card:hover .bolge-name-overlay,
.bolge-card:hover .bolge-image {
  opacity: 1 !important;
  background: inherit !important;
}

.bolge-card:hover .bolge-info {
  background: #1a1a1a !important;
  opacity: 1 !important;
}

/* Etiket */
.location-tag{
  background: rgba(10,10,12,.72) !important;
  color: var(--gold2) !important;
  border: 1px solid rgba(212,175,55,.30) !important;
}

/* Fiyat */
.current-price{
  color: var(--gold2) !important;
}
.old-price{
  color: rgba(255,255,255,.45) !important;
}

/* =========================
   SİSTEM NASIL ÇALIŞIR (koyu tema)
   ========================= */
.sistem-nasil-calısır-section{
  background: radial-gradient(900px 500px at 50% 0%, rgba(212,175,55,.10), transparent 60%), #0b0b0d !important;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.adimlar-container{
  background: linear-gradient(180deg, rgba(18,19,24,.92), rgba(14,15,18,.92)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
.adim-card h3{
  color: #fff !important;
}
.adim-card p{
  color: rgba(255,255,255,.65) !important;
}
.adim-icon{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
  color: #0b0b0c !important;
}

/* =========================
   BLOG card premium
   ========================= */
.blog-card{
  background: linear-gradient(180deg, rgba(18,19,24,.92), rgba(14,15,18,.92)) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
.blog-category{
  background: rgba(10,10,12,.72) !important;
  border: 1px solid rgba(212,175,55,.30) !important;
  color: var(--gold2) !important;
}
.blog-content h3{ color: #fff !important; }
.blog-content p{ color: rgba(255,255,255,.65) !important; }
.read-more-btn{ color: var(--gold2) !important; }
.read-more-btn:hover{ color: var(--gold) !important; }

/* =========================
   FOOTER (tam siyah + gold detay)
   ========================= */
.main-footer{
  background: #09090b !important;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-column h3{
  color: #fff !important;
}
.footer-column p,
.footer-links a,
.contact-info li,
.payment-options span{
  color: rgba(255,255,255,.65) !important;
}
.footer-links a:hover{
  color: var(--gold2) !important;
}
.contact-info i{
  color: var(--gold) !important;
}
.whatsapp-btn a{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%) !important;
  color: #0b0b0c !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.whatsapp-btn a:hover{
  filter: brightness(1.05);
}

/* Footer alt */
.footer-bottom{
  background: #050506 !important;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom p{ color: rgba(255,255,255,.65) !important; }

/* =========================
   MOBİL MENU (koyu + gold)
   ========================= */
.mobile-menu{
  background: linear-gradient(180deg, rgba(18,19,24,.98), rgba(10,10,12,.98)) !important;
  border-left: 1px solid rgba(212,175,55,.18) !important;
}
.mobile-nav a{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.85) !important;
}
.mobile-nav a:hover{
  border-color: rgba(212,175,55,.55) !important;
  background: rgba(212,175,55,.08) !important;
}
.btn-res{
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important
  color: #0b0b0c !important;
}
.mobile-close{
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}

/* =========================
   Seçim/odak (form input) daha premium
   ========================= */
button, a, input{
  outline-color: rgba(212,175,55,.45);
}
/* =========================
   PREMIUM REZERVASYON FORM TONLARI (EN ALTA)
   ========================= */

:root{
  --vip-bg: #0b0c0f;          /* genel siyah */
  --vip-card: rgba(12,12,14,.92);
  --vip-card2: rgba(18,18,20,.92);
  --vip-line: rgba(212,175,55,.35);  /* altın border */
  --vip-gold: #d4af37;
  --vip-gold2:#f1d27a;
  --vip-text: rgba(255,255,255,.92);
  --vip-muted: rgba(255,255,255,.55);
}

/* Section arkaplanı */
.rezervasyon-form-section{
  background: transparent !important;
}

/* Kart: koyu + altın çizgi */
.rezervasyon-form-card{
  background: linear-gradient(180deg, var(--vip-card) 0%, var(--vip-card2) 100%) !important;
  border: 1px solid var(--vip-line) !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.70) !important;
  position: relative;
}

/* Üstte ince altın şerit */
.rezervasyon-form-card::before{
  content:"";
  position:absolute;
  left:18px; right:18px; top:12px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.9), transparent);
  opacity:.9;
}

/* Başlıklar */
.rezervasyon-form-card .form-group label{
  color: var(--vip-text) !important;
  font-weight: 800 !important;
  letter-spacing: .8px !important;
}

/* Input alanları: koyu, belirgin */
.rezervasyon-form-card .form-group input{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: #fff !important;
  border-radius: 14px !important;
  transition: all .25s ease;
}
.rezervasyon-form-card .form-group input::placeholder{
  color: rgba(255,255,255,.42) !important;
}
.rezervasyon-form-card .form-group input:focus{
  border-color: rgba(212,175,55,.75) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,.18) !important;
}

/* Sol iconlar gold, sağ iconlar soft */
.rezervasyon-form-card .input-icon-left{
  color: rgba(212,175,55,.95) !important;
}
.rezervasyon-form-card .input-icon-right{
  color: rgba(255,255,255,.45) !important;
}

/* Yolcu kutusu: koyu + gold kenar */
.rezervasyon-form-card .yolcu-selector{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 14px !important;
}
.rezervasyon-form-card .yolcu-count{
  color: var(--vip-text) !important;
  font-weight: 800 !important;
  pointer-events: none !important;
  cursor: default !important;
}

/* Minus/Plus: gold premium */
.rezervasyon-form-card .yolcu-btn{
  background: rgba(212,175,55,.18) !important;
  border: 1px solid rgba(212,175,55,.35) !important;
  color: var(--vip-gold2) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.rezervasyon-form-card .yolcu-btn:hover{
  transform: translateY(-1px) scale(1.05);
  background: rgba(212,175,55,.28) !important;
  border-color: rgba(212,175,55,.55) !important;
}

/* ARA butonu: gerçek gold */
.rezervasyon-form-card .btn-search-large{
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 45px rgba(255, 107, 53, 0.4) !important;
  text-transform: none !important;
  letter-spacing: 0.5px;
  font-weight: 800 !important;
  width: 100% !important;
  max-width: 800px !important;
  padding: 16px 30px !important;
  font-size: 16px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.rezervasyon-form-card .btn-search-large:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  box-shadow: 0 24px 55px rgba(255, 107, 53, 0.5) !important;
  transform: translateY(-2px);
}

.rezervasyon-form-card .btn-search-large span,
.rezervasyon-form-card .btn-search-large i {
  color: #ffffff !important;
}
.rezervasyon-form-card .btn-search-large:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(212,175,55,.28) !important;
  filter: brightness(1.03);
}

/* Bilgi notu: koyu zemin + gold vurgu */
.rezervasyon-form-card .rezervasyon-bilgi-notu{
  color: rgba(212,175,55,.85) !important;
  font-size: 13px !important;
}
.rezervasyon-form-card .rezervasyon-bilgi-notu .kirmizi{
  color: #f5d77a !important;  /* premium gold */
  font-weight: 600;
}

@media (max-width: 768px){
  .rezervasyon-form-card .rezervasyon-bilgi-notu{
    color: rgba(212,175,55,.9) !important;
    font-size: 11px !important;
    line-height: 1.5;
  }
  .rezervasyon-form-card .rezervasyon-bilgi-notu .kirmizi{
    color: #f5d77a !important;
    font-size: 11px !important;
  }
}

/* Mobilde padding biraz azalt */
@media (max-width: 768px){
  .rezervasyon-form-card{
    padding: 14px 16px !important;
  }
}
/* =========================
   DESKTOP – VIP DARK FORM
   ========================= */
@media (min-width: 1025px){

  /* Form kartı */
  .rezervasyon-form-card{
    background: linear-gradient(180deg,#141414,#0e0e0e) !important;
    border: 1px solid rgba(212,175,55,.35);
    box-shadow: 0 30px 90px rgba(0,0,0,.85);
  }

  /* Label */
  .rezervasyon-form-card label{
    color:#ffffff !important;
    font-weight:700;
    letter-spacing:.8px;
  }

  /* Input alanları */
  .rezervasyon-form-card input{
    background:#0f0f0f !important;
    color:#ffffff !important;
    border:1px solid rgba(255,255,255,.18) !important;
  }

  .rezervasyon-form-card input::placeholder{
    color:rgba(255,255,255,.45);
  }

  .rezervasyon-form-card input:focus{
    border-color:#d4af37 !important;
    box-shadow:0 0 0 2px rgba(212,175,55,.25);
  }

  /* Yolcu alanı */
  .yolcu-selector{
    background:#0f0f0f !important;
    border:1px solid rgba(255,255,255,.18) !important;
  }

  .yolcu-count{
    color:#ffffff !important;
    font-weight:700;
  }

  .yolcu-btn{
    background:#1c1c1c !important;
    color:#d4af37 !important;
    border:1px solid rgba(212,175,55,.35);
  }

  .yolcu-btn:hover{
    background:#d4af37 !important;
    color:#111 !important;
  }

  /* ARA butonu */
  .btn-search-large{
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #ffffff !important;
    font-weight:800 !important;
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    width: 100% !important;
    max-width: 800px !important;
    padding: 16px 30px !important;
    font-size: 16px !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .btn-search-large:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    box-shadow: 0 24px 55px rgba(255, 107, 53, 0.5) !important;
    transform: translateY(-2px);
  }
  
  .btn-search-large span,
  .btn-search-large i {
    color: #ffffff !important;
  }
  
  @media (max-width: 768px) {
    .btn-search-large {
      font-size: 14px !important;
      padding: 16px 20px !important;
      line-height: 1.4 !important;
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  .btn-search-large:hover{
    background: linear-gradient(135deg,#f5e28a,#d4af37) !important;
  }

  /* Alt bilgilendirme */
  .rezervasyon-bilgi-notu{
    color:rgba(255,255,255,.7) !important;
  }

  .rezervasyon-bilgi-notu .kirmizi{
    color:#d4af37 !important;
  }

  /* Google Autocomplete */
  .pac-container{
    background:#0f0f0f !important;
    border:1px solid rgba(212,175,55,.35) !important;
    box-shadow:0 20px 40px rgba(0,0,0,.9);
  }

  .pac-item{
    background:#0f0f0f !important;
    color:#ffffff !important;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .pac-item:hover{
    background:#1a1a1a !important;
  }

  .pac-item-query{
    color:#d4af37 !important;
    font-weight:700;
  }

  .pac-matched{
    color:#f5e28a !important;
  }
}
/* =========================================
   FIX: FORM + HARİTA SLIDER ALTINA İNSİN
   (EN SONA EKLE)
   ========================================= */

/* Formu yukarı çeken tüm negatif marginleri ez */
.rezervasyon-form-section{
  margin-top: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 25px !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Kartın alt boşluğu */
.rezervasyon-form-card{
  margin: 0 auto 18px !important;
}

/* Haritayı formdan biraz aşağı al */
.map-section{
  margin-top: 18px !important;
}

/* Harita kutusunu aşağı it */
.map-container{
  margin-top: 0 !important;
}

/* Slider ile form arası temiz olsun */
.slider-section{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* =========================================
   FIX: FORM + HARİTA SLIDER İÇİNDE KALMASIN
   (EN SONA EKLE)
   ========================================= */

/* Desktop'ta overlay'i KAPAT -> normal akış */
@media (min-width: 1025px){

  .form-overlay{
    position: static !important;     /* absolute olmasın */
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    pointer-events: auto !important; /* tıklama engeli kalksın */
    z-index: auto !important;
  }

  /* slider altına boşluk ekleyen şeyi kapat */
  .hero-wrapper{
    padding-bottom: 0 !important;
  }
}

/* Rezervasyon bölümü normal şekilde slider'ın ALTINDA dursun */
.rezervasyon-form-section{
  margin-top: 0 !important;
  padding-top: 30px !important;
  padding-bottom: 25px !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Harita bölümü gizlendi - Dropdown sistemine geçildi */
.map-section{
  display: none !important;
  visibility: hidden !important;
}
.map-container{
  display: none !important;
  visibility: hidden !important;
}
#harita{
  display: none !important;
  visibility: hidden !important;
}
/* =================================================
   REZERVASYON FORM – TAMAMEN SİYAH PREMIUM (YOLCU GİBİ)
   ================================================= */

/* FORM KART */
.rezervasyon-form-card{
  background: #0b0b0c !important;
  border: 1px solid rgba(212,175,55,.45) !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.95) !important;
}

/* TÜM INPUT KUTULARI (NEREDEN / NEREYE) - PREMIUM GOLD */
.rezervasyon-form-card input{
  background: #0b0b0c !important;
  border: 1px solid rgba(212,175,55,.45) !important;
  color: #f5d77a !important;
  border-radius: 999px !important;   /* pill */
}

/* SELECT DROPDOWN KUTULARI - INPUT İLE AYNI STİL */
.rezervasyon-form-card .custom-select{
  background: #0b0b0c !important;
  border: 1px solid rgba(212,175,55,.45) !important;
  color: #f5d77a !important;
  border-radius: 999px !important;   /* pill */
}

/* Placeholder - GOLD */
.rezervasyon-form-card input::placeholder{
  color: rgba(212,175,55,.65) !important;
}

@media (max-width: 768px){
  .rezervasyon-form-card input{
    color: #f5d77a !important;
    font-size: 16px !important; /* iOS Safari zoom engellemek için 16px */
  }
  
  .rezervasyon-form-card .custom-select{
    color: #f5d77a !important;
    font-size: 16px !important;
  }
  
  .rezervasyon-form-card input::placeholder{
    color: rgba(212,175,55,.7) !important;
  }
}

/* Focus */
.rezervasyon-form-card input:focus,
.rezervasyon-form-card .custom-select:focus{
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,.25) !important;
}

/* INPUT ICONLAR */
.rezervasyon-form-card .input-icon-left,
.rezervasyon-form-card .input-icon-right{
  color: #d4af37 !important;
}

/* LABEL - PREMIUM GOLD */
.rezervasyon-form-card label{
  color: #d4af37 !important;
  font-weight: 800;
  letter-spacing: .8px;
  text-shadow: 0 2px 4px rgba(212,175,55,0.3);
}

@media (max-width: 768px){
  .rezervasyon-form-card label{
    color: #f5d77a !important;
    font-weight: 700;
    font-size: 12px !important;
  }
}

/* =====================
   YOLCU (ZATEN İSTEDİĞİN GİBİ)
   ===================== */
.rezervasyon-form-card .yolcu-selector{
  background: #0b0b0c !important;
  border: 1px solid rgba(212,175,55,.45) !important;
  border-radius: 999px !important;
  height: 50px !important;
  padding: 10px 15px !important;
  gap: 12px !important;
  max-width: 240px !important;
  flex-shrink: 0 !important;
  margin-left: auto !important;
  justify-self: end !important;
}

/* + / - */
.rezervasyon-form-card .yolcu-btn{
  background: #0b0b0c !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212,175,55,.55) !important;
}

.rezervasyon-form-card .yolcu-btn:hover{
  background: #d4af37 !important;
  color: #111 !important;
}

/* Yolcu yazısı - PREMIUM GOLD */
.rezervasyon-form-card .yolcu-count{
  color: #d4af37 !important;
  font-weight: 800;
  font-size: 14px !important;
  text-shadow: 0 2px 4px rgba(212,175,55,0.3);
  pointer-events: none !important;
  cursor: default !important;
  overflow: visible !important;
  text-overflow: clip !important;
  min-width: 80px !important;
  max-width: 120px !important;
}

@media (max-width: 768px){
  .rezervasyon-form-card .yolcu-count{
    color: #f5d77a !important;
    font-size: 12px !important;
    pointer-events: none !important;
    cursor: default !important;
  }
}

/* Yolcu yazısı */
.rezervasyon-form-card .yolcu-count{
  color: #d4af37 !important;
  font-weight: 800;
  font-size: 14px !important;
  text-shadow: 0 2px 4px rgba(212,175,55,0.3);
  pointer-events: none !important;
  cursor: default !important;
  overflow: visible !important;
  text-overflow: clip !important;
  min-width: 80px !important;
  max-width: 120px !important;
}

@media (max-width: 768px){
  .rezervasyon-form-card .yolcu-count{
    color: #f5d77a !important;
    font-size: 12px !important;
    pointer-events: none !important;
    cursor: default !important;
  }
}

/* =====================
   ARA BUTONU (GOLD)
   ===================== */
.rezervasyon-form-card .btn-search-large{
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
  width: 100% !important;
  max-width: 800px !important;
  padding: 16px 30px !important;
  font-size: 16px !important;
  text-align: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
}

.rezervasyon-form-card .btn-search-large:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  box-shadow: 0 26px 60px rgba(255, 107, 53, 0.5) !important;
  transform: translateY(-2px);
}

.rezervasyon-form-card .btn-search-large span,
.rezervasyon-form-card .btn-search-large i {
  color: #ffffff !important;
}

.rezervasyon-form-card .btn-search-large:hover{
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  transform: translateY(-2px);
}

/* =====================
   BİLGİ NOTU
   ===================== */
.rezervasyon-bilgi-notu span{
  color: rgba(255,255,255,.65) !important;
}

.rezervasyon-bilgi-notu .kirmizi{
  color: #f5d77a !important;
  font-weight: 600;
}

@media (max-width: 768px){
  .rezervasyon-bilgi-notu{
    font-size: 11px !important;
    line-height: 1.5;
  }
  .rezervasyon-bilgi-notu .kirmizi{
    color: #f5d77a !important;
    font-size: 11px !important;
  }
}
/* =========================
   HEADER REZERVASYON SORGULA – KÜÇÜLT
   ========================= */

.rezervasyon-sorgula-btn{
  padding: 4x 10px !important;   /* daha ince */
  font-size: 10px !important;     /* 16 → 14 */
  border-radius: 999px !important;
  font-weight: 800 !important;
  gap: 6px !important;
}

/* ikon da biraz küçülsün */
.rezervasyon-sorgula-btn i{
  font-size: 12px !important;
}
/* ================================
   PREMIUM KURUMSAL - GOLD FIX
   (mor -> gold)
   ================================ */
body.premium-kurumsal{
  background:#070707;
  color:#f5f5f5;
}

/* HERO morluğu */
body.premium-kurumsal .kurumsal-hero{
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%) !important;
  color:#000000 !important;
}

/* Başlık & alt yazı */
body.premium-kurumsal .kurumsal-hero h1{
  color:#000000 !important;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 10px rgba(0,0,0,0.3) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}
body.premium-kurumsal .kurumsal-hero p{
  color: #000000 !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.3), 0 0 8px rgba(255,255,255,0.2) !important;
  opacity: 1 !important;
}

/* Bölüm başlıkları + alt çizgisi (mor -> gold) */
body.premium-kurumsal .section-title{
  color:#d4af37 !important;
  border-bottom: 3px solid rgba(212,175,55,.7) !important;
}
body.premium-kurumsal .section-title i{
  color:#d4af37 !important;
}

/* İçerik yazıları koyu zeminde okunur olsun */
body.premium-kurumsal .section-content{
  color: rgba(245,245,245,.85) !important;
}

/* Feature kartlar (beyaz kart -> koyu premium) */
body.premium-kurumsal .feature-card{
  background: rgba(12,12,12,.92) !important;
  color: rgba(245,245,245,.88) !important;
  border-top: 4px solid rgba(212,175,55,.7) !important;
  box-shadow: 0 14px 45px rgba(0,0,0,.55) !important;
}
body.premium-kurumsal .feature-card h3{
  color:#d4af37 !important;
}
body.premium-kurumsal .feature-card p{
  color: rgba(245,245,245,.78) !important;
}
body.premium-kurumsal .feature-card i{
  color:#d4af37 !important;
}

/* Bölgeler badge mor -> gold */
body.premium-kurumsal .bolge-badge{
  background: linear-gradient(135deg, #d4af37 0%, #b88924 100%) !important;
  color:#0b0b0b !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.45) !important;
}
body.premium-kurumsal .bolge-badge:hover{
  box-shadow: 0 16px 40px rgba(0,0,0,.55) !important;
}

/* Neden biz kutuları (açık gri -> koyu) */
body.premium-kurumsal .why-item{
  background: rgba(10,10,10,.85) !important;
  border-left: 4px solid rgba(212,175,55,.7) !important;
  color: rgba(245,245,245,.88) !important;
}
body.premium-kurumsal .why-item i{
  color:#d4af37 !important;
}
body.premium-kurumsal .why-item-content h4{
  color:#d4af37 !important;
}
body.premium-kurumsal .why-item-content p{
  color: rgba(245,245,245,.78) !important;
}

/* CTA mor -> gold premium */
body.premium-kurumsal .cta-section{
  background: linear-gradient(135deg, rgba(212,175,55,.22) 0%, rgba(212,175,55,.06) 100%) !important;
  border: 1px solid rgba(212,175,55,.35) !important;
}
body.premium-kurumsal .cta-section h2{
  color:#d4af37 !important;
}
body.premium-kurumsal .cta-section p{
  color: rgba(245,245,245,.88) !important;
}
/* ==============================
   MOBİLDE YOLCU KUTUSUNU TAM YAY
   ============================== */
@media (max-width: 768px){

  /* Yolcu kutusu kapsayıcı */
  .rezervasyon-form-card .yolcu-selector{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    justify-content: space-between !important;
  }

  /* İçindeki + - ve yazı */
  .rezervasyon-form-card .yolcu-selector .yolcu-btn{
    flex: 0 0 44px;
  }

  .rezervasyon-form-card .yolcu-selector .yolcu-count{
    flex: 1;
    text-align: center;
    font-size: 15px;
  }

}

/* =========================
   TURLAR SAYFASI STİLLERİ
   ========================= */
body.premium-turlar {
    background: #000000;
    color: #ffffff;
}

.turlar-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%) !important;
    color: #000000;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.turlar-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 10px rgba(0,0,0,0.3);
    color: #000000 !important;
    letter-spacing: -0.5px;
}

.turlar-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    color: #000000 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3), 0 0 8px rgba(255,255,255,0.2);
}

.turlar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    background: #000000;
}

.turlar-section {
    margin-bottom: 60px;
}

.turlar-section .section-title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFD700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.turlar-section .section-title i {
    font-size: 2rem;
    color: #FFD700;
}

.turlar-section .section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 25px;
}

.turlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tur-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid #FFD700;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.tur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border-color: #FFD700;
}

.tur-card-image {
    height: 200px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tur-card-image i {
    font-size: 4rem;
    color: #000000;
    opacity: 0.9;
}

.tur-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
}

.tur-card-content h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tur-card-content h3 i {
    font-size: 1.3rem;
    color: #FFD700;
}

.tur-card-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tur-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tur-highlights li {
    padding: 8px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tur-highlights li i {
    color: #FFD700;
    font-size: 0.9rem;
}

.tur-card-footer {
    margin-top: auto;
}

.bolge-turlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bolge-tur-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
    border-left: 4px solid #FFD700;
    transition: transform 0.3s;
}

.bolge-tur-item:hover {
    transform: translateX(5px);
    border-left-color: #FFD700;
}

.bolge-tur-item h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bolge-tur-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.turlar-section .intro-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid #FFD700;
    border: 2px solid #FFD700;
}

.turlar-section .intro-box h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.turlar-section .intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

.turlar-section .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.turlar-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.15);
    border: 1px solid #333;
}

.turlar-section .feature-item i {
    font-size: 2rem;
    color: #FFD700;
    flex-shrink: 0;
}

.turlar-section .feature-item-content h4 {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.turlar-section .feature-item-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .turlar-hero h1 {
        font-size: 2rem;
    }
    
    .turlar-hero p {
        font-size: 1.1rem;
    }
    
    .turlar-section .section-title {
        font-size: 2rem;
    }
    
    .turlar-grid,
    .bolge-turlar-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   ARAÇLARIMIZ & MİSAFİRLERİMİZ SAYFASI STİLLERİ
   ========================= */
body.premium-araclar,
body.premium-misafirler {
    background: #000000;
    color: #ffffff;
}

.galeri-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8860B 100%);
    color: #000000;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.galeri-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 10px rgba(0,0,0,0.3);
    color: #000000 !important;
    letter-spacing: -0.5px;
}

.galeri-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    color: #000000 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3), 0 0 8px rgba(255,255,255,0.2);
}

.galeri-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
    background: #000000;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    border: 2px solid #FFD700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 4/3;
}

.galeri-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    border-color: #FFD700;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.galeri-item:hover .galeri-item-overlay {
    opacity: 1;
}

.galeri-item-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
}

.galeri-empty {
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
}

.galeri-empty i {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.galeri-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.galeri-empty p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close i {
    font-size: 1.8rem;
}

.lightbox-close:hover {
    color: #000000;
    background: rgba(255, 215, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s;
    background: rgba(212, 175, 55, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    color: #000000;
    background: rgba(255, 215, 0, 0.9);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .galeri-hero h1 {
        font-size: 2rem;
    }
    
    .galeri-hero p {
        font-size: 1.1rem;
    }
    
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}
/* Lightbox menünün üstünde kalsın */
.lightbox-modal{
  position: fixed;
  inset: 0;
  z-index: 999999 !important;   /* header 1000 vs ise bunu geçer */
}

.lightbox-modal.active{
  display: flex; /* sende zaten aktif class ile açılıyor, display ayarın farklıysa dokunma */
}

/* Kapatma (X) ve oklar da üstte olsun */
.lightbox-close,
.lightbox-nav{
  z-index: 1000000 !important;
}

/* X ikonunu biraz daha “güvenli” yukarı al */
.lightbox-close{
  position: fixed;       /* absolute yerine fixed daha garanti */
  top: 18px;
  right: 18px;
}
/* ===============================
   WHATSAPP BUTON STİLLERİ
   =============================== */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 50%, #20BA5A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-button i {
    font-size: 18px;
    color: #ffffff !important;
}

.whatsapp-button span {
    color: #ffffff !important;
}

/* Premium sayfalar için WhatsApp butonları */
body.premium-kurumsal .whatsapp-button,
body.premium-turlar .whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 20px rgba(37, 211, 102, 0.2);
}

body.premium-kurumsal .whatsapp-button:hover,
body.premium-turlar .whatsapp-button:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
}

/* ===============================
   OTEL / BÖLGE KART DÜZENİ
   =============================== */

/* BİLGİSAYAR → 4 TANE */
.bolge-cards{
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
}

/* TABLET → 2 TANE */
@media (max-width: 1024px){
  .bolge-cards{
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* MOBİL → 1 TANE */
@media (max-width: 768px){
  .bolge-cards{
    grid-template-columns: 1fr !important;
  }
}

.location-tag{
  display:none !important;
}
