/* style.css (TAMAMEN DÜZENLENMİŞ FİNAL VERSİYON) */

/* ============================================= */
/* ===== 1. GENEL AYARLAR VE DEĞİŞKENLER ======= */
/* ============================================= */
:root {
    --primary-color: #0A2240; /* Derin Mavi */
    --secondary-color: #D4AF37; /* Altın Sarısı */
    --light-gray-color: #F8F9FA;
    --dark-text-color: #333;
    --light-text-color: #FFF;
    --main-font: 'Playfair Display', serif;      /* Sitenin ana yazı tipi (Menüler, Başlıklar vs.) */
    --paragraph-font: 'Lato', sans-serif;       /* Sadece paragraflar ve detaylar için */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--main-font);
    line-height: 1.6;
    color: var(--dark-text-color);
    background-color: #fff;
}

p, .yacht-specs span, .yacht-type {
    font-family: var(--paragraph-font);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--main-font);
    color: var(--primary-color);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

.bg-light {
    background-color: var(--light-gray-color);
}

/* ============================================= */
/* ============== 2. HEADER STİLLERİ =========== */
/* ============================================= */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--main-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.header-right {
    display: flex;
    align-items: center;
}

.social-media a, .language-switcher a {
    color: var(--primary-color);
    margin: 0 8px;
    font-size: 1rem;
    text-decoration: none;
}
.language-switcher span {
    color: #ccc;
}
.language-switcher .active {
    color: var(--secondary-color);
    font-weight: bold;
}
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Varsayılan olarak (masaüstünde) menü içindeki mobil ikonları gizle */
.nav-social-mobile {
    display: none;
}

/* ============================================= */
/* ============ 3. SAYFA BÖLÜMLERİ ============= */
/* ============================================= */

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.6);
}

.hero-video-wrapper img, .hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* --- Hakkımızda / Giriş Bölümü --- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text .section-title::after {
    margin-left: 0;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    font-family: var(--paragraph-font);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.about-intro-image .image-wrapper {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Yat Kartları --- */
.yacht-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.yacht-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.yacht-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.yacht-card-content {
    padding: 25px;
}

.yacht-card-content h3 {
    margin-bottom: 5px;
}

.yacht-specs {
    display: flex;
    padding: 15px 0;
    margin-bottom: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 0;
}

.yacht-specs span {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-right: 10px;
}

.yacht-specs i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.yacht-price {
    margin-bottom: 20px;
}
.yacht-price p {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}
.yacht-price h4 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-family: var(--main-font);
}

/* --- Harekete Geçirici Mesaj Alanı (CTA Banner) --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background-image: url('https://placehold.co/1920x600/0A2240/FFFFFF?text=Tekne+Görseli');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.8);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-intro {
    font-family: var(--paragraph-font);
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta-contact p {
    font-family: var(--paragraph-font);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.cta-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* --- Neden Biz Bölümü--- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.why-us-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.why-us-item h3 {
    margin-bottom: 10px;
}

/* ============================================= */
/* ================ 4. FOOTER ================== */
/* ============================================= */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-logo {
    font-family: var(--main-font);
    font-size: 1.8rem;
    color: #fff;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-column p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}
.footer-social {
    margin-top: 20px;
}
.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* ============================================= */
/* ============ 5. MOBİL UYUMLULUK ============= */
/* ============================================= */

/* ----- Geniş Tablet ve Altı (max-width: 992px) ----- */
@media (max-width: 992px) {
    /* Header & Menü */
    .nav-menu {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .logo {
        font-size: 1.5rem;
    }
    .header-right .social-media {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active li {
        width: 100%;
        text-align: center;
    }
    .nav-menu.active a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }
    .nav-menu.active .nav-social-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
    }
    .nav-social-mobile a {
        font-size: 1.5rem;
        margin: 0 15px;
        color: var(--primary-color);
    }
    .nav-social-mobile a:hover {
        color: var(--secondary-color);
    }

    /* Sayfa Bölümleri */
    .hero h1 {
        font-size: 2.8rem;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-intro-image {
        order: -1;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* ----- Telefon Ekranları (max-width: 768px) ----- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .yacht-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ============================================= */
/* =========== HAKKIMIZDA SAYFASI STİLLERİ ====== */
/* ============================================= */

/* --- Sayfa Başlığı (Hero Banner) --- */
.page-header {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.7); /* Karartma efekti */
}
.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
}
.page-header .breadcrumbs {
    font-family: var(--paragraph-font);
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}
.page-header .breadcrumbs a {
    color: #fff;
    text-decoration: none;
}
.page-header .breadcrumbs a:hover {
    text-decoration: underline;
}

/* --- Hikayemiz Bölümü --- */
.image-wrapper-square img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Fotoğraf Galerisi --- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.photo-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.photo-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.photo-gallery a:hover img {
    transform: scale(1.1);
}

/* --- Tekne Planları Bölümü --- */
.boat-plans img {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    display: block;
    border: 1px solid #eee;
    padding: 10px;
}
/* ============================================= */
/* ============= FİLO SAYFASI STİLLERİ ========= */
/* ============================================= */

.fleet-filters {
    padding: 40px 0 0;
    text-align: center;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid #eee;
    color: var(--dark-text-color);
    padding: 10px 25px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--main-font);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.filter-btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}
/* ============================================= */
/* ========= YAT DETAY SAYFASI STİLLERİ ======== */
/* ============================================= */

.yacht-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Sol sütun biraz daha geniş */
    gap: 40px;
}

/* --- Sol Sütun: Galeri --- */
.yacht-gallery-column .main-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}
.thumbnail-images .thumbnail {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.thumbnail-images .thumbnail:hover {
    border-color: var(--secondary-color);
}

/* --- Sağ Sütun: Bilgi ve Form --- */
.yacht-info-column h2 {
    font-size: 2.8rem;
    margin-top: 0;
}
.yacht-type-detail {
    font-size: 1.2rem;
    color: #888;
    margin-top: -10px;
    font-family: var(--paragraph-font);
}
.key-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background-color: var(--light-gray-color);
    border-radius: 8px;
}
.spec-item {
    font-family: var(--paragraph-font);
}
.spec-item strong {
    display: block;
    color: var(--dark-text-color);
}

/* Rezervasyon Formu Kutusu */
.booking-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.price-box {
    text-align: right;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.price-box span {
    font-family: var(--paragraph-font);
    font-size: 0.9rem;
    color: #888;
}
.price-box h3 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--secondary-color);
}
.booking-box h4 {
    text-align: center;
    margin-top: 0;
}
.form-row {
    display: flex;
    gap: 15px;
}
.form-group {
    margin-bottom: 15px;
    width: 100%;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 0.9rem;
}
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--paragraph-font);
    font-size: 1rem;
}
.booking-box .btn {
    width: 100%;
    margin-top: 10px;
}

/* --- Alt Kısım: Sekmeler (Tabs) --- */
.tab-buttons {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}
.tab-btn {
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-family: var(--main-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    position: relative;
    top: 1px;
}
.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}
.tab-content {
    display: none; /* JS ile yönetilecek */
}
.tab-content.active {
    display: block;
}
.specs-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-family: var(--paragraph-font);
}
.specs-list li {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}
.amenities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    font-family: var(--paragraph-font);
}
.amenities-list li {
    padding: 10px;
}
.amenities-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}


/* Detay Sayfası Mobil Uyumluluk */
@media (max-width: 992px) {
    .yacht-detail-grid {
        grid-template-columns: 1fr; /* Sütunları alt alta indir */
    }
}
@media (max-width: 768px) {
    .specs-list {
        grid-template-columns: 1fr;
    }
}
/* ============================================= */
/* =========== İLETİŞİM SAYFASI STİLLERİ ======= */
/* ============================================= */

/* --- İletişim Bilgi Kutuları --- */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-detail-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-detail-box .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.contact-detail-box h3 {
    margin-bottom: 10px;
}

.contact-detail-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* --- Form ve Harita Alanı --- */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Form alanı biraz daha geniş */
    gap: 40px;
    align-items: flex-start;
}

.contact-form-wrapper .section-title::after {
    margin-left: 0;
}

.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--paragraph-font);
    font-size: 1rem;
    resize: vertical;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    height: 550px; /* Harita yüksekliği */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* İletişim Sayfası Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr; /* Sütunları alt alta indir */
    }
    .map-wrapper {
        height: 400px;
        margin-top: 30px;
    }
}
/* ============================================= */
/* =========== ROTA SAYFASI STİLLERİ =========== */
/* ============================================= */

/* --- İnteraktif Harita Bölümü --- */
.interactive-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.map-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.map-image {
    width: 100%;
    display: block;
}
.hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.hotspot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--secondary-color);
    animation: pulse 2s infinite;
    z-index: -1;
}
.hotspot span {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.hotspot:hover span, .hotspot.active span {
    opacity: 1;
    visibility: visible;
    bottom: 160%;
}
.hotspot.active {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- Rota Detayları Alanı --- */
.route-details-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.route-details-content img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}
.route-duration {
    font-family: var(--paragraph-font);
    font-style: italic;
    color: #888;
}
.route-highlights-detail {
    list-style: none;
    padding: 0;
    font-family: var(--paragraph-font);
}
.route-highlights-detail li {
    margin-bottom: 10px;
}
.route-highlights-detail i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* --- Tüm Rotalar (Kart Görünümü) --- */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.route-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.route-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.route-card-content {
    padding: 25px;
}
.route-highlights {
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 1px solid #eee;
    font-family: var(--paragraph-font);
}
.route-highlights li {
    margin-bottom: 8px;
    color: #666;
}
.route-highlights i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Rota Sayfası Mobil Uyumluluk */
@media (max-width: 992px) {
    .interactive-map-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================= */
/* ========= ROTA DETAY SAYFASI STİLLERİ ======= */
/* ============================================= */

/* --- Günlük Program (Timeline) --- */
.itinerary-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.itinerary-timeline::after { /* Dikey çizgi */
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 15px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    padding-left: 70px;
}

.timeline-day {
    position: absolute;
    width: 50px;
    height: 50px;
    left: -10px;
    top: 20px;
    background-color: #fff;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-top: 0;
}
.timeline-content p {
    margin-bottom: 0;
    font-family: var(--paragraph-font);
}