/* ===== RESET & GENEL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

/* ===== HEADER STYLES ===== */
.main-header, .header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Alanı */
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Telefon ve WhatsApp Butonları - MASAÜSTÜ */
.contact-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-buttons {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    border-right: 1px solid #e9ecef;
}

.phone-btn:last-child {
    border-right: none;
}

.phone-btn i {
    color: #007bff;
    font-size: 14px;
}

.phone-btn:hover {
    background: #007bff;
    color: white;
}

.phone-btn:hover i {
    color: white;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25d366;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid #25d366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn i {
    color: white;
    font-size: 16px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 140, 126, 0.3);
}

/* Sağ Alan */
.right-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigasyon Menüsü */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link i {
    font-size: 14px;
}

/* Dropdown ok dönüşü */
.nav-item.active .fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* Dropdown Menü */
.dropdown-menu {
     display: none !important;
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 10px 0 10px 15px !important;
        margin: 5px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        grid-template-columns: 1fr !important;
        border: none !important;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.dropdown-item:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.dropdown-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #007bff;
}

.dropdown-item-content h4 {
    font-size: 15px;
    margin-bottom: 3px;
    color: #007bff;
}

.dropdown-item-content p {
    font-size: 12px;
    color: #666;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn i {
    font-size: 22px;
    color: #333;
}

.mobile-menu-btn:hover {
    background: #007bff;
}

.mobile-menu-btn:hover i {
    color: white;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    gap: 8px;
    margin: 15px 0 20px;
    color: #888;
    font-size: 13px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

/* ===== TUR BAŞLIK ===== */
.tour-title {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.tour-type-badge.konaklamali {
    background: #28a745;
    color: white;
}

.tour-type-badge.gunubirlik {
    background: #ffc107;
    color: #333;
}

.tour-type-badge.yurtdisi {
    background: #dc3545;
    color: white;
}

.tour-type-badge.yurtdisi-gunubirlik {
    background: linear-gradient(135deg, #dc3545, #ffc107);
    color: white;
}

.tour-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta i {
    color: #007bff;
    width: 16px;
}

/* ===== GÖRSEL SLIDER ===== */
.gallery-section {
    margin-bottom: 30px;
}

.gallery-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 5px 0 15px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #007bff #e0e0e0;
}

.gallery-slider::-webkit-scrollbar {
    height: 5px;
}

.gallery-slider::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.gallery-slider::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 5px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== TUR ÖZET ===== */
.tour-summary {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border-left: 4px solid #007bff;
}

.tour-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-summary h3 i {
    color: #007bff;
}

.summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.summary-item i {
    color: #007bff;
    width: 20px;
}

.summary-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* ===== GEZİLECEK YERLER ===== */
.highlights-section {
    margin-bottom: 10px;
}

.highlights-section h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-section h3 i {
    color: #007bff;
}

.places-list {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.places-list ul {
 font-size: 15px;
    line-height: 1.7;
    color: #444;
    white-space: pre-line;
}

.places-list li {
    padding: 8px 12px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px dotted #ddd;
    align-items: center;
    gap: 8px;
}

.places-list li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
}

/* ===== ANA GRİD ===== */
.tour-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-bottom: 40px;
}

/* ===== PROGRAM BÖLÜMÜ ===== */
.program-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 4px;
}

.program-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-section h3 i {
    color: #007bff;
}

.program-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    white-space: pre-line;
}

.program-text p {
    margin-bottom: 15px;
}

.program-text strong {
    color: #007bff;
}

/* ===== REZERVASYON PANELİ ===== */
.booking-panel {
    background: #f8f8f8;
    border: 1px solid #eaeaea;
    padding: 25px;
}

.price-box {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.price-current {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

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

.price-note {
    font-size: 13px;
    color: #e67e22;
    margin-top: 8px;
    font-weight: 500;
}

.exchange-rate-info {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.exchange-rate-info i {
    color: #007bff;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    background: white;
}

.person-selector {
    background: white;
    padding: 15px;
    border: 1px solid #eaeaea;
    margin-bottom: 15px;
}

.person-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.person-row:last-child {
    margin-bottom: 0;
}

.person-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.person-label i {
    color: #007bff;
    width: 20px;
}

.person-label span {
    font-weight: 500;
}

.person-label small {
    color: #888;
    font-size: 12px;
    margin-left: 5px;
}

.person-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
}

.person-btn:hover {
    background: #007bff;
    color: white;
}

.person-count {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.person-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.single-supplement-warning {
    background: #fff3cd;
    border-left: 3px solid #e67e22;
    padding: 10px;
    margin: 10px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-supplement-warning i {
    color: #e67e22;
    font-size: 16px;
}

.single-supplement-warning strong {
    color: #e67e22;
}

.date-selector {
    margin-bottom: 20px;
}

.date-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.date-option:hover {
    border-color: #007bff;
    background: #f0f7ff;
}

.date-option.selected {
    border-color: #007bff;
    background: #f0f7ff;
}

.date-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #007bff;
}

.date-info {
    flex: 1;
}

.date-info strong {
    font-size: 15px;
    color: #222;
}

.date-info p {
    font-size: 12px;
    color: #888;
}

.payment-summary {
    background: white;
    padding: 15px;
    border: 1px solid #eaeaea;
    margin: 20px 0;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.payment-row.single-supplement {
    color: #e67e22;
    font-weight: 500;
    border-top: 1px dashed #e67e22;
    padding-top: 8px;
    margin-top: 5px;
}

.payment-row.total {
    border-top: 2px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
}

.payment-row.prepaid {
    background: #e8f4fd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
    justify-content: space-between;
}

.payment-row.prepaid span {
    color: #007bff;
    font-weight: 700;
}

.remaining-amount {
    color: #e67e22;
    font-weight: 700;
    font-size: 18px;
}

.euro-amount {
    color: #007bff;
    font-weight: 600;
}

.tl-amount {
    font-size: 12px;
    color: #888;
    margin-left: 5px;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 10px;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: white;
    border: 1px solid #007bff;
    color: #007bff;
}

.btn-secondary:hover {
    background: #f0f7ff;
}

.info-text {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin: 15px 0 5px;
}

/* ===== POPUP MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

.modal-close:hover {
    color: #007bff;
}

.modal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.modal-content h3 i {
    color: #007bff;
    margin-right: 10px;
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.modal-form-group label i {
    color: #007bff;
    width: 20px;
    margin-right: 5px;
}

.modal-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.modal-form-control:focus {
    outline: none;
    border-color: #007bff;
}

.modal-info-box {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 14px;
}

.modal-info-box p {
    margin: 5px 0;
}

.modal-info-box strong {
    color: #007bff;
}

.modal-btn {
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.modal-btn:hover {
    background: #0056b3;
}

/* ===== ÖNEMLİ BİLGİLER ===== */
.info-section {
    margin: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.info-block ul {
    list-style: none;
}

.info-block li {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    gap: 8px;
}

.info-block i {
    color: #007bff;
    width: 18px;
}

.info-block i.fa-times {
    color: #e67e22;
}

.important-note {
    background: #fef9e7;
    padding: 15px;
    border-left: 3px solid #e67e22;
    font-size: 14px;
    margin: 20px 0 0;
}

/* ===== POPÜLER DESTİNASYONLAR ===== */
.destinations-section {
    margin-top: 40px;
}

.destinations-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px 15px 15px;
}

.destination-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.destination-overlay p {
    font-size: 13px;
    opacity: 0.9;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: #333;
    color: #fff;
    padding: 50px 0 15px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    color: #999;
    font-size: 14px;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer a {
    color: #999;
    text-decoration: none;
}

.footer a:hover {
    color: #007bff;
}

.footer-col i {
    margin-right: 8px;
    color: #007bff;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #444;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #fff;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://martitur.com/acenta/resim/canakkale-gelibolu7881.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* ===== POPULAR TOURS - SLIDER ===== */
.popular-tours {
    padding: 80px 0 50px;
    background: #f8f9fa;
}

.tour-slider-wrapper {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #007bff;
    background: #fff;
    color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
    z-index: 5;
}

.slide-btn:hover:not(:disabled) {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.slide-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
    box-shadow: none;
}

.tour-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 15px 5px 25px 5px;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
    scrollbar-color: #007bff #e0e0e0;
    cursor: default;
    flex: 1;
    touch-action: pan-x pan-y;
}

.tour-slider::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.tour-slider::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.tour-slider::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.tour-slider::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.tour-card {
    min-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,123,255,0.2);
}

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.tour-badge.konaklamali {
    background: #28a745;
}

.tour-badge.gunubirlik {
    background: #ffc107;
    color: #333;
}

.tour-badge.yurtdisi {
    background: #dc3545;
    color: #fff;
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc3545;
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.tour-info {
    padding: 18px;
}

.tour-info h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.tour-info h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.tour-info h3 a:hover {
    color: #007bff;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    color: #666;
    font-size: 13px;
    flex-wrap: wrap;
}

.tour-meta i {
    margin-right: 4px;
    color: #007bff;
}

.tour-meta span {
    background: #f0f7ff;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.tour-price {
    margin-bottom: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 13px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

.price-unit {
    font-size: 13px;
    color: #666;
}

.btn-details {
    display: inline-block;
    padding: 8px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
}

.btn-details:hover {
    background: #0056b3;
    transform: translateX(3px);
}

.text-center {
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #007bff;
    color: #fff;
}

/* ===== YUVARLAK TUR KATEGORİLERİ ===== */
.round-categories {
    padding: 70px 0;
    background: #fff;
}

.round-categories h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.categories-circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    width: 150px;
}

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

.circle-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #007bff;
    box-shadow: 0 10px 20px rgba(0,123,255,0.3);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.circle-item:hover .circle-image {
    border-color: #ffc107;
    box-shadow: 0 15px 30px rgba(255,193,7,0.4);
}

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

.circle-item span {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.circle-item:hover span {
    color: #007bff;
}

/* ===== FEATURED TOUR ===== */
.featured-tour {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.featured-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.featured-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.featured-highlights {
    margin: 25px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.highlight i {
    color: #28a745;
    font-size: 16px;
}

.featured-price {
    margin-bottom: 25px;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-label {
    display: block;
    color: #666;
    margin-bottom: 4px;
    font-size: 13px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
}

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

.featured-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* ===== BLOG SLIDER ===== */
.blog-posts {
    padding: 70px 0;
    background: #fff;
}

.blog-slider-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 15px 5px 25px 5px;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
    scrollbar-color: #007bff #e0e0e0;
    flex: 1;
    touch-action: pan-x pan-y;
}

.blog-slider::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.blog-slider::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.blog-slider::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.blog-card {
    min-width: 350px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
}

.blog-meta i {
    margin-right: 4px;
    color: #007bff;
}

.blog-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: #007bff;
}

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

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover {
    color: #0056b3;
}

.read-more:hover i {
    transform: translateX(3px);
}


.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-wrapper p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-buttons {
        gap: 5px;
    }
    
    .phone-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .whatsapp-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 10px 20px;
        position: relative;
    }
    
    .logo-area {
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .contact-buttons {
        gap: 5px;
    }
    
    .phone-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        z-index: 999999 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        padding: 15px !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        display: block !important;
    }
    
    .nav-item {
		width: 100% !important;
        margin-bottom: 5px !important;
        position: relative !important;    }
    
    .nav-link {
		display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 20px !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
        color: #333 !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        text-decoration: none !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1000000 !important;
        border: 1px solid #eee !important;
    }
	.nav-link i {
        font-size: 14px !important;
        transition: transform 0.3s !important;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 15px 0 0 0;
        display: none;
        grid-template-columns: 1fr;
        background: transparent;
    }
        .nav-item.active > .nav-link i.fa-chevron-down {
        transform: rotate(180deg) !important;
    }
    .nav-item.active .dropdown-menu {
        display: grid !important;
    }
    
    .dropdown-item {
               display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 15px !important;
        background: white !important;
        border: 1px solid #eee !important;
        border-radius: 8px !important;
        margin-bottom: 5px !important;
        text-decoration: none !important;
        color: #333 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 1000001 !important;
    }
      .dropdown-item:hover {
        background: #f0f7ff !important;
        border-color: #007bff !important;
    }
    .dropdown-item img {
		width: 40px !important;
        height: 40px !important;
        border-radius: 5px !important;
        object-fit: cover !important;
    
    }
	.dropdown-item-content h4 {
        font-size: 14px !important;
        margin: 0 0 3px 0 !important;
        color: #007bff !important;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .featured-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-highlights {
        text-align: left;
    }
    
    .tour-card {
        min-width: 300px;
    }
    
    .blog-card {
        min-width: 300px;
    }
	    .dropdown-item-content p {
        font-size: 11px !important;
        margin: 0 !important;
        color: #666 !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 8px 15px;
    }
    
    .logo-area {
        gap: 8px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .contact-buttons {
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        z-index: 1001;
        gap: 8px;
        background: white;
        padding: 8px;
        border-radius: 60px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.2);
        justify-content: center;
    }
    
    .phone-buttons {
        flex: 2;
        background: #f8f9fa;
        border-radius: 50px;
    }
    
    .phone-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 5px;
        font-size: 13px;
        border-right: 1px solid #ddd;
    }
    
    .whatsapp-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 5px;
        font-size: 13px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .nav-link i {
        font-size: 16px;
    }
    
    .dropdown-item {
        padding: 10px 12px;
    }
    
    .dropdown-item-content h4 {
        font-size: 14px;
    }
    
    .dropdown-item-content p {
        font-size: 11px;
    }
    
    .tour-title {
        font-size: 22px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-item {
        width: 240px;
        height: 160px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
 
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
    }
    
    .popular-tours {
        padding: 60px 0 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .tour-slider-wrapper, .blog-slider-wrapper {
        gap: 5px;
    }
    
    .tour-card {
        min-width: 280px;
    }
    
    .blog-card {
        min-width: 260px;
    }
    
    .tour-slider, .blog-slider {
        gap: 15px;
        padding: 10px 5px 20px 5px;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .categories-circle {
        gap: 20px;
    }
    
    .circle-item {
        width: 130px;
    }
    
    .circle-image {
        width: 100px;
        height: 100px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 5px 12px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .contact-buttons {
        padding: 5px;
    }
    
    .phone-btn {
        padding: 10px 2px;
        font-size: 11px;
        gap: 3px;
    }
    
    .phone-btn i {
        font-size: 12px;
    }
    
    .whatsapp-btn {
        padding: 10px 2px;
        font-size: 11px;
        gap: 3px;
    }
    
    .whatsapp-btn i {
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .dropdown-item {
        padding: 8px 10px;
    }
    
    .dropdown-item img {
        width: 40px;
        height: 40px;
    }
    
    .tour-card {
        min-width: 260px;
    }
    
    .blog-card {
        min-width: 240px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .circle-item {
        width: 110px;
    }
    
    .circle-image {
        width: 90px;
        height: 90px;
    }
    
    .circle-item span {
        font-size: 14px;
    }
    
    .blog-content h3 {
        font-size: 16px;
    }
    
    .blog-content p {
        font-size: 12px;
    }
    
    .blog-meta {
        font-size: 11px;
    }
    
    .read-more {
        font-size: 12px;
    }
    
    .hero-section {
        height: 350px;
    }
}
.footer img[alt="Martitur Logo"] {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .footer img[alt="Martitur Logo"] {
        margin: 0 auto 10px auto;
    }
}