/* ==========================================================================
   TUR SATIS 
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --secondary-gradient: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    --surface-dark: #0f172a;
    --surface-light: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-white: #ffffff;
    --accent-blue: #3b82f6;
    --accent-gold: #fbbf24;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --blur-strength: 20px;

    /* Spacing & Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    /* Animations */
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Hero Section Wrapper */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 72px);
    overflow: hidden;
}

/* Background container - hero içinde absolute */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.background-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.22) 32%, rgba(15, 23, 42, 0) 58%);
}

.bg-image {
    width: 100%;
    height: 100%;
    background: url('/SiteAssets/arkaplan.jpg') center center / cover no-repeat;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
}

/* Blobs - devre dışı */
.blob {
    display: none;
}


/* Wrapper for content only */
.page-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Navigation — Kurumsal Beyaz Header
   ========================================================================== */
.navbar-modern {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 72px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    font-size: 2rem;
    color: #1e3a5f;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #1e3a5f;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    align-items: center;
    height: 72px;
    margin-left: auto;
}

.nav-link {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s var(--ease-smooth);
    opacity: 1;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a5f, #2563eb);
    border-radius: 2px 2px 0 0;
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: #1e3a5f;
    background: rgba(30, 58, 95, 0.04);
    opacity: 1;
    transform: none;
    text-shadow: none;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    height: 40px;
}

.nav-end-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-end-item:hover {
    background: rgba(30, 58, 95, 0.05);
    border-color: rgba(30, 58, 95, 0.15);
}

.nav-end-item i {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    color: #1e3a5f;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(30, 58, 95, 0.05);
    border-color: rgba(30, 58, 95, 0.15);
}

.nav-toggle i {
    font-size: 1.1rem;
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 999;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    z-index: 1000;
    padding: 12px 5%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-weight: 700;
}

.mobile-nav-link:hover {
    background: rgba(30, 58, 95, 0.05);
    color: #1e3a5f;
}

body.mobile-nav-open .mobile-nav,
body.mobile-nav-open .mobile-nav-backdrop {
    display: block;
}

/* ==========================================================================
   Hero Content
   ========================================================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 40px auto 80px;
    padding: 0 5%;
    align-items: start;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    color: white;
    padding-top: 5rem;
    /* Visually center without moving on form expansion */
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 0.8s var(--ease-smooth);
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
    animation: slideInLeft 0.8s 0.2s var(--ease-smooth) backwards;
}

.hero-headline span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
    animation: slideInLeft 0.8s 0.4s var(--ease-smooth) backwards;
}

.cta-group {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 0.8s 0.6s var(--ease-smooth) backwards;
}

.cta-group span {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s var(--ease-elastic);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--accent-blue);
}

/* Form Elements */
.trip-toggles {
    background: white;
    padding: 5px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toggle-option {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-option.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    z-index: 10;
    transition: 0.3s;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    background: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-input:focus+i {
    color: var(--accent-blue);
}

.counter-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.counter-box {
    background: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: block;
}

.counter-select {
    width: 100%;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 18px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 114, 255, 0.35);
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* ==========================================================================
   Planned Tours Section 
   ========================================================================== */
.tours-section {
    width: 100%;
    margin: 0 auto;
    padding: 100px 5%;
    background: linear-gradient(180deg, #eef2ff 0%, #f0f9ff 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tours-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.tours-section-header .section-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    margin: 0 auto 20px;
    border-radius: 4px;
}

.tours-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.tours-section-header h2 span {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tours-section-header p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== Light Cheerful Card ===== */
.tour-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transform: translateY(14px);
    opacity: 0;
    animation: baliIn 0.4s ease-out forwards;
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes baliIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -12px rgba(59, 130, 246, 0.18),
        0 8px 20px -4px rgba(0, 0, 0, 0.06);
}

/* Resim alanı - BÜYÜK ve ÖNE ÇIKAN */
.tour-card-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
}

.tour-card-bg {
    display: none;
}

.tour-card-bg-inner {
    display: none;
}

.tour-card-hero {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.tour-card-hero i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.35);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.tour-card-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-card:hover .tour-card-hero {
    transform: scale(1.03);
}

/* Üst bar - SVG ikon + buton, resimin içinde */
.tour-card-top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s ease;
}

.tour-card-icon svg {
    width: 24px;
    height: 24px;
}

.tour-card:hover .tour-card-icon {
    transform: rotate(8deg) scale(1.05);
}

.tour-card-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tour-card-link svg {
    stroke: #1e293b;
}

.tour-card-link:hover {
    transform: scale(1.12);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tour-card-link:active {
    transform: scale(0.95);
}

/* Badge'ler - gizlendi, info-chip'e taşındı */
.tour-card-image .visual-badge,
.tour-card-image .visual-badge-right {
    display: none;
}

/* Info Chip'ler - resmin altında */
.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f1f5f9;
    color: #334155;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.info-chip i {
    color: #3b82f6;
    font-size: 0.72rem;
}

/* İçerik Alanı */
.tour-card-content {
    padding: 4px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Başlık */
.tour-card-title {
    text-align: left;
}

.tour-card-title h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #0f172a;
    text-transform: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.tour-card-title h3 span {
    color: #3b82f6;
}

/* Açıklama */
.tour-card-desc {
    text-align: left;
    font-size: 0.88rem;
    max-width: none;
    margin: 0;
    color: #64748b;
    font-weight: 400;
    line-height: 1.55;
    padding: 0;
}

/* Alt butonlar */
.tour-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 4px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
}

.btn-card-buy {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.35);
}

.btn-card-buy:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.45);
    color: white;
}

.btn-card-detail {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-card-detail:hover {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #cbd5e1;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 2px dashed #e2e8f0;
}

.empty-icon {
    font-size: 3.5rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-text h3 {
    color: #334155;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.empty-text p {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card-hero {
        height: 240px;
    }
}


/* ==========================================================================
   Gallery / Filo Section
   ========================================================================== */
.gallery-section {
    width: 100%;
    padding: 80px 5% 100px;
    background: #ffffff;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header .gallery-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    margin: 0 auto 20px;
    border-radius: 4px;
}

.gallery-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.gallery-header h2 span {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-header p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}



.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}


.gallery-overlay {
    display: none;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



.btn-tour-buy {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-tour-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.35);
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
}

.tour-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-tour-detail {
    background: transparent;
    color: #1e3a5f;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s var(--ease-smooth);
    border: 2px solid #1e3a5f;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-tour-detail:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
}

/* Tour card stagger animation */

.tour-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tour-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tour-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tour-card:nth-child(4) {
    animation-delay: 0.4s;
}

.tour-card:nth-child(5) {
    animation-delay: 0.5s;
}

.tour-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes tourCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No tours available state */
.no-tours-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.no-tours-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.modern-footer {
    width: 100%;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 3rem 5% 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-info-item i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-top: 40px;
    }

    .hero-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-end .nav-end-item:last-child {
        display: none;
    }

    .navbar-modern {
        min-height: 56px;
        padding: 0 4%;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        top: 56px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-info-item {
        justify-content: center;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tours-section-header h2 {
        font-size: 2rem;
    }

    .tour-card-footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .tour-card-actions {
        margin-left: auto;
        flex-wrap: nowrap;
    }

    .btn-tour-buy {
        justify-content: center;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Seferler Page Styles
   ========================================================================== */
.seferler-page {
    --primary: #2563eb;
    --primary-dark: #1e3a5f;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --success: #10b981;
    --bg-body: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

.seferler-page body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

.seferler-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Search Summary Banner */
.search-summary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 3rem 0 5rem;
    /* Extra bottom padding for overlap */
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.2);
}

/* Ambient background effects */
.search-summary::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.search-summary-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.search-summary h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.2s ease;
}

.search-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.search-tag.highlight {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 700;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Results Area */
.results-area {
    max-width: 1200px;
    margin: -3.5rem auto 2rem;
    /* Pull up to overlap */
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.results-count {
    color: white;
    /* Contrast against dark header */
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results-count strong {
    font-weight: 700;
    color: #fff;
}

.btn-new-search {
    background: white;
    color: var(--primary-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-new-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sefer Result Card */
.sefer-card {
    background: white;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.5s ease backwards;
    position: relative;
}

.sefer-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.sefer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), #1d4ed8);
}

.sefer-card-inner {
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    align-items: center;
    padding: 2.2rem 2.5rem;
    gap: 2rem;
}

/* Route Styles */
.sefer-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sefer-port {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sefer-port:first-child {
    text-align: left;
    align-items: flex-start;
}

.sefer-port:last-child {
    text-align: right;
    align-items: flex-end;
}

.sefer-port-time {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sefer-port-date {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    margin-top: -2px;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sefer-port-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
}

.sefer-port-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Middle Graphic */
.sefer-line {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    min-width: 140px;
}

.sefer-line-bar {
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    margin: 10px 0;
}

.sefer-line-bar::before,
.sefer-line-bar::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    transition: all 0.3s;
}

.sefer-line-bar::before {
    left: 0;
}

.sefer-line-bar::after {
    right: 0;
    border-color: var(--primary);
    background: var(--primary);
}

.sefer-line-icon {
    color: var(--primary);
    background: var(--primary-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sefer-line-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 20px;
}

/* Info Section */
.sefer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-left: 2rem;
    border-left: 1px solid #f1f5f9;
}

.sefer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.sefer-info-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.sefer-info-item strong {
    color: #1e293b;
    font-weight: 600;
}

.sefer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sefer-status.active {
    background: #ecfdf5;
    color: #059669;
}

.sefer-status.active i {
    font-size: 0.5rem;
    color: #059669;
}

/* Call to Action */
.sefer-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.sefer-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sefer-no {
    font-family: monospace;
    font-size: 0.8rem;
    color: #94a3b8;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
}

.btn-sefer-select {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-sefer-detail {
    background: transparent;
    color: var(--primary-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    cursor: pointer;
    white-space: nowrap;
}

.btn-sefer-detail:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

.btn-sefer-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
}

/* No Results Modern Card */
.no-results-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid white;
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.no-results-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.no-results-icon-wrapper i {
    font-size: 3rem;
    color: #cbd5e1;
}

.no-results-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #e2e8f0;
    animation: spin 10s linear infinite;
}

.no-results-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 0 1rem;
    font-weight: 800;
}

.no-results-card p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 2rem;
    max-width: 320px;
    line-height: 1.6;
}

.btn-back-home {
    background: var(--primary-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    min-width: 180px;
}

.btn-back-home:hover {
    background: #172554;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(30, 58, 95, 0.25);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sefer-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sefer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sefer-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Seferler Responsive Breakpoints */
@media (max-width: 900px) {
    .sefer-card-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .search-summary-inner,
    .results-area {
        padding: 0 1.5rem;
    }

    .sefer-route {
        width: 100%;
    }

    .sefer-info {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-left: 0;
        padding-top: 1.5rem;
        align-items: flex-start;
    }

    .sefer-action {
        width: 100%;
        align-items: center;
        padding-top: 1rem;
    }

    .sefer-buttons {
        width: 100%;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .btn-sefer-select,
    .btn-sefer-detail {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .search-summary {
        padding-bottom: 7rem;
    }

    .search-summary h1 {
        font-size: 1.6rem;
    }

    .results-area {
        margin-top: -5rem;
        padding: 0 1rem;
    }

    .search-summary-inner {
        padding: 0 1rem;
    }

    .results-header {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        align-items: stretch;
    }

    .btn-new-search {
        width: 100%;
        justify-content: center;
    }

    .sefer-route {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sefer-port {
        align-items: center !important;
        text-align: center !important;
    }

    .sefer-port-time {
        font-size: 1.75rem;
    }

    .sefer-line {
        width: 100%;
        min-width: auto;
    }

    .sefer-line-bar {
        margin: 0;
        width: 2px;
        height: 40px;
    }

    .sefer-line-bar::before {
        top: 0;
        left: -5px;
    }

    .sefer-line-bar::after {
        top: auto;
        bottom: 0;
        right: auto;
        left: -5px;
    }

    .sefer-line-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 10px 0;
        background: white;
        z-index: 2;
    }

    .sefer-line {
        flex-direction: column;
        overflow: hidden;
    }
}

/* ==========================================================================
   Sefer Detay Page Styles
   ========================================================================== */
.detay-page body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    background: #f0f4f8;
    color: #1e293b;
}

.detay-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Banner */
.detay-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0891b2 100%);
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.detay-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/SiteAssets/arkaplan.jpg') center center / cover no-repeat;
    opacity: 1;
}

.detay-hero::after {
    content: none;
}

.detay-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 40px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
}

.hero-route-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 60px;
    margin-bottom: 16px;
}

.hero-route-badge .port-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-route-badge .route-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-route-badge .route-arrow .line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
}

.hero-route-badge .route-arrow i {
    font-size: 1rem;
    color: #fbbf24;
}

.hero-route-badge .route-arrow .duration {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.92rem;
    opacity: 0.85;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta-item i {
    color: #fbbf24;
}

/* Detail Content */
.detay-content {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 5% 60px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.detay-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Main Info Cards */
.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 24px;
}

.info-card-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3a5f;
}

.info-card-header i {
    color: #2563eb;
    font-size: 1.1rem;
}

.info-card-body {
    padding: 28px;
}

/* Route Timeline */
.route-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.timeline-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 44px;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #2563eb;
    background: white;
    position: relative;
    z-index: 2;
}

.timeline-dot.departure {
    background: #2563eb;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
}

.timeline-dot.arrival {
    background: #059669;
    border-color: #059669;
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.15);
}

.timeline-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #2563eb, #059669);
    border-radius: 3px;
}

.timeline-info {
    padding-bottom: 16px;
}

.timeline-info .time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 2px;
}

.timeline-info .date {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 4px;
}

.timeline-info .port {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-info .port i {
    color: #2563eb;
    font-size: 0.85rem;
}

.timeline-duration {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0 8px 64px;
}

.timeline-duration .badge {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e40af;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.timeline-duration .badge i {
    color: #3b82f6;
}

/* Detail Items Grid */
.detail-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.detail-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.detail-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-item-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.detail-item-icon.green {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.detail-item-icon.orange {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.detail-item-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.detail-item-text .label {
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    display: block;
}

.detail-item-text .value {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
}

/* Description Card */
.description-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 24px;
    position: sticky;
    top: 90px;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    padding: 24px;
    color: white;
}

.sidebar-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.sidebar-card-header p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.sidebar-card-body {
    padding: 24px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-badge.active {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.status-badge.active::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Sidebar Info Items */
.sidebar-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-info-item i {
    color: #2563eb;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-info-item .info-label {
    font-size: 0.78rem;
    color: #94a3b8;
    display: block;
}

.sidebar-info-item .info-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

/* CTA Button */
.btn-bilet-al {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    margin-top: 20px;
}

.btn-bilet-al:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-geri {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

.btn-geri:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.amenity-item i {
    color: #059669;
    font-size: 0.85rem;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #0369a1;
    font-weight: 600;
    border: 2px dashed rgba(3, 105, 161, 0.2);
}

.map-placeholder i {
    font-size: 2rem;
    opacity: 0.6;
}

/* Sefer Detay Responsive */
@media (max-width: 900px) {
    .detay-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .hero-route-badge {
        padding: 10px 18px;
        gap: 10px;
    }

    .hero-route-badge .port-name {
        font-size: 1.1rem;
    }

    .hero-route-badge .route-arrow .line {
        width: 30px;
    }

    .detail-items {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .detay-content {
        margin-top: 24px;
    }
}

/* Sefer Detay Animations */
.info-card,
.sidebar-card {
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sidebar-card {
    animation-delay: 0.15s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Booking Modal Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 80px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.35s ease forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-sefer-info {
    font-size: 0.88rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
}

.modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
    max-height: none;
    flex: 1;
    overflow-y: auto;
}

.booking-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.84rem;
}

.step-item .step-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.step-item.active {
    color: #1e3a5f;
}

.step-item.active .step-index {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.step-divider {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
    border-radius: 999px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

/* Form Sections */
.form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    font-size: 0.9rem;
    color: #2563eb;
}

/* Radio Card Group */
.radio-card-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.radio-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.radio-card-inner i {
    font-size: 1.1rem;
}

.radio-card.active .radio-card-inner,
.radio-card input:checked+.radio-card-inner {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
    color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-card:hover .radio-card-inner {
    border-color: #94a3b8;
}

/* Form Rows & Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #2563eb;
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-hint {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 400;
}

.dynamic-summary {
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dynamic-summary .badge {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
}

.dynamic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.dynamic-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dynamic-card-title {
    margin: 0 0 10px;
    color: #1e3a5f;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-card-preview {
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
}

.payment-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bank-chip {
    width: 36px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-brand {
    font-size: 0.74rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.payment-card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.payment-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.payment-card-bottom .label {
    display: block;
    opacity: 0.75;
    font-size: 0.68rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.payment-card-bottom strong {
    font-size: 0.86rem;
    font-weight: 700;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.btn-form-cancel {
    padding: 13px 28px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: inherit;
    min-width: 126px;
    justify-content: center;
}

.btn-form-cancel:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.btn-form-submit {
    padding: 13px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
    font-family: inherit;
    min-width: 178px;
    justify-content: center;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}

/* Success Message */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    animation: modalSlideIn 0.35s ease forwards;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.success-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #1e3a5f;
    margin: 0 0 10px 0;
}

.success-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.btn-success-close {
    padding: 13px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 12px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.15rem;
    }

    .modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .radio-card-group {
        flex-direction: row;
    }

    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-form-cancel,
    .btn-form-submit {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Booking Modal Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 80px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.35s ease forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-sefer-info {
    font-size: 0.88rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
}

.modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
    max-height: none;
    flex: 1;
    overflow-y: auto;
}

.booking-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.84rem;
}

.step-item .step-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

.step-item.active {
    color: #1e3a5f;
}

.step-item.active .step-index {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.step-divider {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
    border-radius: 999px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

/* Form Sections */
.form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    font-size: 0.9rem;
    color: #2563eb;
}

/* Radio Card Group */
.radio-card-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.radio-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.radio-card-inner i {
    font-size: 1.1rem;
}

.radio-card.active .radio-card-inner,
.radio-card input:checked+.radio-card-inner {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
    color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-card:hover .radio-card-inner {
    border-color: #94a3b8;
}

/* Form Rows & Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #2563eb;
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-hint {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 400;
}

.dynamic-summary {
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dynamic-summary .badge {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
}

.dynamic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.dynamic-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dynamic-card-title {
    margin: 0 0 10px;
    color: #1e3a5f;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-card-preview {
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
}

.payment-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bank-chip {
    width: 36px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-brand {
    font-size: 0.74rem;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.payment-card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.payment-card-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.payment-card-bottom .label {
    display: block;
    opacity: 0.75;
    font-size: 0.68rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.payment-card-bottom strong {
    font-size: 0.86rem;
    font-weight: 700;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.btn-form-cancel {
    padding: 13px 28px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: inherit;
    min-width: 126px;
    justify-content: center;
}

.btn-form-cancel:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

.btn-form-submit {
    padding: 13px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
    font-family: inherit;
    min-width: 178px;
    justify-content: center;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}

/* Success Message */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 420px;
    animation: modalSlideIn 0.35s ease forwards;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.success-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #1e3a5f;
    margin: 0 0 10px 0;
}

.success-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.btn-success-close {
    padding: 13px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: inherit;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 20px 12px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.15rem;
    }

    .modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .radio-card-group {
        flex-direction: row;
    }

    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .btn-form-cancel,
    .btn-form-submit {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Rezervasyon Sayfası (Tam Sayfa Booking Form)
   ========================================================================== */
.rezervasyon-page {
    min-height: 100vh;
    background: #f1f5f9;
}

.rezervasyon-form-wrapper {
    max-width: 780px;
    margin: 32px auto 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 36px 40px;
    animation: cardFadeIn 0.5s ease forwards;
}

.btn-form-cancel {
    text-decoration: none;
}

@media (max-width: 768px) {
    .rezervasyon-form-wrapper {
        margin: 16px 12px 32px;
        padding: 20px 16px;
        border-radius: 16px;
    }
}

/* Sefer Bilgi Kartı */
.sefer-bilgi-karti {
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.sefer-bilgi-header {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: white;
    padding: 16px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sefer-bilgi-body {
    padding: 24px;
    background: #f8fafc;
}

/* Güzergah Rota */
.sefer-bilgi-rota {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 20px;
}

.rota-port {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rota-port-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
    border: 3px solid;
}

.rota-port-dot.kalkis {
    background: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.rota-port-dot.varis {
    background: #2563eb;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.rota-port-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rota-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 600;
}

.rota-saat {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
}

.rota-liman {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rota-liman i {
    color: #2563eb;
    font-size: 0.78rem;
}

.rota-tarih {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 2px;
}

.rota-cizgi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0 8px;
    gap: 6px;
}

.rota-cizgi-bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #2563eb);
    border-radius: 999px;
    position: relative;
}

.rota-cizgi-bar::before {
    content: '\f21a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f8fafc;
    color: #2563eb;
    padding: 4px 6px;
    font-size: 0.85rem;
}

.rota-sure {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

/* Detay Grid */
.sefer-bilgi-detaylar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.sefer-bilgi-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sefer-bilgi-item>i {
    color: #2563eb;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sbi-label {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

.sbi-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
}

@media (max-width: 768px) {
    .sefer-bilgi-rota {
        flex-direction: column;
        gap: 4px;
    }

    .rota-cizgi {
        min-width: unset;
        flex-direction: row;
        padding: 8px 0;
    }

    .rota-cizgi-bar {
        flex: 1;
        height: 2px;
    }

    .sefer-bilgi-detaylar {
        grid-template-columns: 1fr 1fr;
    }

    .sefer-bilgi-body {
        padding: 16px;
    }
}