/* ========================================
   FAS TURLARI - Modern Travel Agency CSS
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
    /* Colors - Moroccan Inspired */
    --primary: #D4442C;
    --primary-dark: #B33620;
    --secondary: #1A3A5C;
    --accent: #E8A54B;
    --accent-light: #F5C16C;
    --background: #FAFAF8;
    --surface: #FFFFFF;
    --text: #1A1A2E;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;

    /* Gradients - Simplified Corporate */
    --gradient-primary: linear-gradient(135deg, #D4442C 0%, #B33620 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26, 58, 92, 0.3) 0%, rgba(26, 58, 92, 0.6) 50%, rgba(26, 26, 46, 0.85) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 58, 92, 0.2) 0%, rgba(26, 26, 46, 0.85) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    margin-bottom: 16px;
    color: var(--secondary);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 68, 44, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 68, 44, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(26, 58, 92, 0.95) 0%, rgba(26, 58, 92, 0.7) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(26, 58, 92, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    transition: var(--transition-normal);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo {
    color: white;
    text-shadow: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-arrow {
    font-size: 10px;
    transition: transform .2s;
}
.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
    list-style: none;
    margin: 0;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: background .15s;
    text-shadow: none;
}
.nav-dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #3b82f6;
}
.nav-dropdown-menu li a i {
    width: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}
.nav-dropdown-menu li a:hover i {
    color: #3b82f6;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header.scrolled .mobile-toggle span {
    background: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 40px;
        transition: var(--transition-normal);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 20px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        text-shadow: none;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin: 32px;
        padding: 16px 24px;
        text-align: center;
        border-radius: var(--radius-md);
    }

    /* Mobile Dropdown */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,.15);
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 200px;
    }
    .nav-dropdown-menu li a {
        color: rgba(255,255,255,.9);
        padding: 16px 32px 16px 48px;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .nav-dropdown-menu li a:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }
    .nav-dropdown-menu li a i {
        color: rgba(255,255,255,.5);
    }
    .nav-dropdown-toggle {
        justify-content: space-between;
    }
    .nav-arrow {
        margin-left: auto;
        transition: transform .2s;
    }
    .nav-dropdown.open .nav-arrow {
        transform: rotate(180deg);
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: -300px;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.3) contrast(1.1) brightness(1.05);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 68, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(212, 68, 44, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(212, 68, 44, 0.7);
    }
}

.hero h1 {
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: 700;
}

.hero h1 span {
    color: #FFD166;
    -webkit-text-fill-color: #FFD166;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 1;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    padding: 16px 36px;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(212, 68, 44, 0.5);
}

.hero-buttons .btn-outline {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.9;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   POPULAR TOURS SECTION
   ======================================== */
.tours {
    padding: 100px 0;
    background: var(--background);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.tours-grid .tour-card {
    max-width: none;
    width: 100%;
}

.tour-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tour-favorite:hover {
    background: var(--primary);
    color: white;
}

.tour-content {
    padding: 24px;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.tour-title a:hover {
    color: var(--primary);
}

.tour-info {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.tour-price {
    font-size: 0.875rem;
    color: var(--text-light);
}

.tour-price strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-weight: 600;
}

.tours-cta {
    text-align: center;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0F2740 100%);
    color: white;
}

.why-us .section-title h2 {
    color: white;
}

.why-us .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations {
    padding: 100px 0;
    background: var(--background);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.destination-card:first-child {
    grid-row: span 2;
}

/* 9-City Grid Layout - Pinterest Style */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
}

/* Tall cards - span 2 rows */
.cities-grid .destination-card:nth-child(1),
.cities-grid .destination-card:nth-child(4),
.cities-grid .destination-card:nth-child(7) {
    grid-row: span 2;
}

/* Medium cards - span 1.5 rows */
.cities-grid .destination-card:nth-child(3),
.cities-grid .destination-card:nth-child(6) {
    grid-row: span 2;
}

/* Regular cards stay at 1 row height */
.cities-grid .destination-card:nth-child(2),
.cities-grid .destination-card:nth-child(5),
.cities-grid .destination-card:nth-child(8),
.cities-grid .destination-card:nth-child(9) {
    grid-row: span 1;
}

.cities-grid .destination-card:first-child {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition-normal);
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(212, 68, 44, 0.8) 100%);
}

.destination-overlay h3 {
    color: white;
    margin-bottom: 8px;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.destination-tours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    opacity: 1;
}

.destination-card:hover .destination-tours {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Category Badge */
.blog-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 80px 0;
    background: var(--surface);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #FDF6ED 0%, var(--background) 100%);
}

.testimonials-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-stars {
    color: var(--accent);
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: white;
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--secondary);
    color: white;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card:first-child {
        grid-row: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 80px 16px 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .tours,
    .why-us,
    .destinations,
    .testimonials,
    .cta {
        padding: 60px 0;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-image {
        height: 220px;
    }

    .tour-content {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 20px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .cities-grid .destination-card:nth-child(1),
    .cities-grid .destination-card:nth-child(4),
    .cities-grid .destination-card:nth-child(7),
    .cities-grid .destination-card:nth-child(3),
    .cities-grid .destination-card:nth-child(6) {
        grid-row: span 1;
    }

    .destination-overlay {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content {
        padding: 60px 12px 40px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .tours,
    .why-us,
    .destinations,
    .testimonials,
    .cta {
        padding: 40px 0;
    }

    .tour-card {
        border-radius: var(--radius-md);
    }

    .tour-image {
        height: 200px;
    }

    .tour-content {
        padding: 16px;
    }

    .tour-title {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .cities-grid {
        grid-auto-rows: 180px;
        gap: 12px;
    }

    .destination-overlay {
        padding: 16px;
    }

    .destination-overlay h3 {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-links {
        align-items: center;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth hover effects */
.tour-card,
.feature-card,
.destination-card,
.testimonial-card {
    will-change: transform;
}

/* ========================================
   TOUR DETAIL PAGE STYLES - EXACT COPY
   ======================================== */

/* Breadcrumb */
.breadcrumb-section {
    padding: 100px 0 20px;
    background: var(--background);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

/* Tour Hero Gallery */
.tour-hero {
    padding: 20px 0 30px;
    background: var(--background);
}

.tour-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 320px;
}

.gallery-main {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Pinterest Style 3-Photo Gallery */
.tour-gallery-pinterest {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    height: 320px;
    border-radius: var(--radius-lg);
}

.gallery-main-pinterest {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-main-pinterest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-main-pinterest:hover img {
    transform: scale(1.03);
}

.gallery-side-pinterest {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 320px;
}

.gallery-fixed-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.gallery-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

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

.gallery-side-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumbnail {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
}

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

/* Tour Detail Layout */
.tour-detail {
    padding: 40px 0 80px;
    background: var(--background);
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* Tour Content */
.tour-content {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.tour-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.tour-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.tour-description {
    margin-bottom: 40px;
}

.tour-description h2,
.tour-features h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tour-description p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.feature-item.included {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.feature-item.included i {
    color: #22C55E;
}

.feature-item.excluded {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
}

.feature-item.excluded i {
    color: #EF4444;
}

/* Sticky Sidebar */
.tour-sidebar {
    position: relative;
}

.tour-sidebar.sticky {
    position: sticky;
    top: 100px;
}

.booking-widget {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    background: var(--secondary);
    color: white;
    padding: 24px;
    text-align: center;
}

.booking-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.booking-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.booking-form {
    padding: 24px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.form-group label i {
    color: var(--primary);
}

/* Calendar Widget */
.calendar-widget {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-title {
    font-weight: 600;
    color: var(--text);
}

.cal-nav {
    background: white;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cal-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 0;
}

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

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: default;
    color: var(--text-light);
}

.day.empty {
    background: transparent;
}

.day.available {
    background: #dcfce7;
    color: #166534;
    cursor: pointer;
    font-weight: 600;
}

.day.available:hover,
.day.available.selected {
    background: #22C55E;
    color: white;
}

.day.limited {
    background: #fef3c7;
    color: #92400e;
    cursor: pointer;
    font-weight: 600;
}

.day.limited:hover,
.day.limited.selected {
    background: #F59E0B;
    color: white;
}

.day.full {
    background: #fee2e2;
    color: #991B1B;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.available {
    background: #22C55E;
}

.dot.limited {
    background: #F59E0B;
}

.dot.full {
    background: #EF4444;
}

/* Person Selector */
.person-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #f8f9fa;
    padding: 16px;
    border-radius: var(--radius-md);
}

.person-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.person-btn:hover {
    background: var(--primary);
    color: white;
}

.person-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    min-width: 40px;
    text-align: center;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-row.discount {
    color: #22C55E;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.booking-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.booking-contact {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

/* Tour Itinerary */
.tour-itinerary-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--background) 100%);
}

.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-day {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 40px;
}

.itinerary-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.day-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 68, 44, 0.3);
}

.day-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.day-content {
    flex: 1;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.day-content h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.day-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.day-content p:last-of-type {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.day-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4f8;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
}

.day-highlights span i {
    color: var(--primary);
}

/* Tour Map */
.tour-map-section {
    padding: 80px 0;
    background: var(--background);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Responsive Tour Page */
@media (max-width: 992px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        order: -1;
    }

    .tour-sidebar.sticky {
        position: relative;
        top: 0;
    }

    .tour-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-side {
        flex-direction: row;
    }

    .gallery-side-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .tour-content {
        padding: 24px;
    }

    .tour-header h1 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-day {
        flex-direction: column;
        gap: 16px;
    }

    .itinerary-day:not(:last-child)::before {
        display: none;
    }

    .day-marker {
        width: 50px;
        height: 50px;
    }

    .day-number {
        font-size: 1.25rem;
    }
}

/* Inline Itinerary Styles */
.tour-itinerary-inline {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.tour-itinerary-inline h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.itinerary-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
}

.itinerary-timeline-inline {
    position: relative;
}

.itinerary-day-inline {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}

.itinerary-day-inline:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.day-marker-inline {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(212, 68, 44, 0.3);
}

.day-content-inline {
    flex: 1;
    padding-bottom: 8px;
}

.day-content-inline h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.day-tag {
    display: inline-block;
    background: rgba(212, 68, 44, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.day-content-inline p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Improved Sticky Sidebar */
.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

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

.gallery-side-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumbnail {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
}

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

/* Tour Detail Layout */
.tour-detail {
    padding: 40px 0 80px;
    background: var(--background);
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* Tour Content */
.tour-content {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.tour-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.tour-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.tour-description {
    margin-bottom: 40px;
}

.tour-description h2,
.tour-features h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.tour-description p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.feature-item.included {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.feature-item.included i {
    color: #22C55E;
}

.feature-item.excluded {
    background: rgba(239, 68, 68, 0.1);
    color: #991B1B;
}

.feature-item.excluded i {
    color: #EF4444;
}

/* Sticky Sidebar */
.tour-sidebar {
    position: relative;
}

.tour-sidebar.sticky {
    position: sticky;
    top: 100px;
}

.booking-widget {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    background: var(--secondary);
    color: white;
    padding: 24px;
    text-align: center;
}

.booking-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.booking-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.booking-form {
    padding: 24px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.form-group label i {
    color: var(--primary);
}

/* Calendar Widget */
.calendar-widget {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-title {
    font-weight: 600;
    color: var(--text);
}

.cal-nav {
    background: white;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cal-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 0;
}

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

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: default;
    color: var(--text-light);
}

.day.empty {
    background: transparent;
}

.day.available {
    background: #dcfce7;
    color: #166534;
    cursor: pointer;
    font-weight: 600;
}

.day.available:hover,
.day.available.selected {
    background: #22C55E;
    color: white;
}

.day.limited {
    background: #fef3c7;
    color: #92400e;
    cursor: pointer;
    font-weight: 600;
}

.day.limited:hover,
.day.limited.selected {
    background: #F59E0B;
    color: white;
}

.day.full {
    background: #fee2e2;
    color: #991B1B;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.legend-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.available {
    background: #22C55E;
}

.dot.limited {
    background: #F59E0B;
}

.dot.full {
    background: #EF4444;
}

/* Person Selector */
.person-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #f8f9fa;
    padding: 16px;
    border-radius: var(--radius-md);
}

.person-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.person-btn:hover {
    background: var(--primary);
    color: white;
}

.person-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    min-width: 40px;
    text-align: center;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-row.discount {
    color: #22C55E;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.booking-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.booking-contact {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

/* Tour Itinerary */
.tour-itinerary-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--background) 100%);
}

.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.itinerary-day {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 40px;
}

.itinerary-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.day-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 68, 44, 0.3);
}

.day-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.day-content {
    flex: 1;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.day-content h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.day-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.day-content p:last-of-type {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.day-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4f8;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
}

.day-highlights span i {
    color: var(--primary);
}

/* Tour Map */
.tour-map-section {
    padding: 80px 0;
    background: var(--background);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Responsive Tour Page */
@media (max-width: 992px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        order: -1;
    }

    .tour-sidebar.sticky {
        position: relative;
        top: 0;
    }

    .tour-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-side {
        flex-direction: row;
    }

    .gallery-side-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .tour-content {
        padding: 24px;
    }

    .tour-header h1 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-day {
        flex-direction: column;
        gap: 16px;
    }

    .itinerary-day:not(:last-child)::before {
        display: none;
    }

    .day-marker {
        width: 50px;
        height: 50px;
    }

    .day-number {
        font-size: 1.25rem;
    }
}

/* Inline Itinerary Styles */
.tour-itinerary-inline {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.tour-itinerary-inline h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.itinerary-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
}

.itinerary-timeline-inline {
    position: relative;
}

.itinerary-day-inline {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    position: relative;
}

.itinerary-day-inline:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.day-marker-inline {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(212, 68, 44, 0.3);
}

.day-content-inline {
    flex: 1;
    padding-bottom: 8px;
}

.day-content-inline h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.day-tag {
    display: inline-block;
    background: rgba(212, 68, 44, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.day-content-inline p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Improved Sticky Sidebar */
.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}


/* No Data Message Styles */
.no-data-message {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    margin: 20px 0;
}

.no-data-message i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 20px;
    display: block;
}

.no-data-message h4 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.no-data-message p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}
/* No Image Placeholder Styles */
.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 0.875rem;
}

.no-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.no-gallery-message {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Tour Card No Image Styles */
.tour-card .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}
/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert h5 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert li {
    margin-bottom: 0.25rem;
}
/* Tour Dates Builder */
.tour-dates-builder {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--bg-light);
}

.dates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tour-dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-date-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
}

.tour-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.date-number {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.date-remove {
    background: var(--error);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
}

.tour-date-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tour-date-content .form-group {
    margin-bottom: 1rem;
}

.date-price-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .tour-date-content {
        grid-template-columns: 1fr;
    }
    
    .dates-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-price-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Section (Homepage) */
.blog-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Homepage Blog Grid */
.homepage-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.homepage-blog-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid #f1f5f9;
}

.homepage-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

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

.homepage-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.homepage-blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.homepage-blog-content {
    padding: 28px;
    background: #ffffff;
}

.homepage-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.homepage-blog-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.homepage-blog-card h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.homepage-blog-card h3 a:hover {
    color: var(--primary);
}

.homepage-blog-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.homepage-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.homepage-blog-read-more:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   BLOG-SPECIFIC PAGE HEADER STYLES
   ======================================== */

/* Blog Page Header */
.blog-page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a365d 100%);
    color: white;
    text-align: center;
    position: relative;
}

.blog-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-page-header-content {
    position: relative;
    z-index: 1;
}

.blog-page-header h1 {
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.blog-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BLOG-SPECIFIC BREADCRUMB STYLES
   ======================================== */

/* Blog Breadcrumb - Sadece blog sayfalarında kullanılır */
.blog-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.blog-breadcrumb a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(232, 165, 75, 0.5);
}

.blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Category Header */
.category-header .category-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Posts */
.featured-posts {
    padding: 60px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.featured-main {
    grid-row: span 2;
}

.featured-main .featured-image {
    height: 300px;
}

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.featured-content {
    padding: 24px;
}

.featured-main .featured-content {
    padding: 32px;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.featured-main h3 {
    font-size: 2rem;
}

/* Blog Layout */
.blog-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-main {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

/* Search Form */
.search-form {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: var(--transition-fast);
}

.search-form:focus-within {
    border-color: var(--primary);
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.search-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.search-form.large {
    margin-bottom: 40px;
}

.search-form.large input {
    padding: 16px 20px;
    font-size: 1rem;
}

.search-form.large button {
    padding: 16px 24px;
    font-size: 1rem;
}

.search-form-container {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li.active a {
    background: var(--primary);
    color: white;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.category-list a:hover {
    background: #f8f9fa;
}

.category-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-count {
    margin-left: auto;
    background: #e9ecef;
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.newsletter-widget h4 {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: var(--radius-md);
    outline: none;
}

.newsletter-form button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.cta-widget h4 {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.pagination-btn,
.pagination-number {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-fast);
    border: 1px solid #e9ecef;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 4px;
}

/* Blog Post Header */
.blog-post-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0F2740 100%);
    color: white;
    position: relative;
    text-align: center;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.blog-post-header .container {
    position: relative;
    z-index: 2;
}

.blog-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.blog-breadcrumb a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(232, 165, 75, 0.5);
}

.blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.blog-post-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(212, 68, 44, 0.4);
}

.blog-post-header h1 {
    margin-bottom: 32px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 1rem;
}

.post-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.post-meta i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Post Content */
.post-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.post-main {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.post-article {
    padding: 40px;
}

.post-featured-image {
    margin-bottom: 40px;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 32px 0 16px;
    color: var(--secondary);
}

.post-body p {
    margin-bottom: 20px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.post-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 24px 0;
    font-style: italic;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.post-body ol li {
    list-style: decimal;
}

/* Post Share */
.post-share {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.post-share h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.email {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Related Posts */
.related-posts {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #e9ecef;
}

.related-posts h3 {
    margin-bottom: 30px;
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 30px;
    padding: 0 10px;
}

.related-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.related-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.related-content {
    padding: 28px;
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-date::before {
    content: "📅";
    font-size: 0.8rem;
}

.related-card h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

.related-card h4 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
}

.related-card h4 a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-posts {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .related-posts h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .related-image {
        height: 150px;
    }
    
    .related-content {
        padding: 15px;
    }
}

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.latest-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest-post {
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.latest-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.latest-content h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.latest-content h5 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.latest-content h5 a:hover {
    color: var(--primary);
}

.latest-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Search Results */
.search-suggestions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.search-suggestions h4 {
    margin-bottom: 12px;
    color: var(--secondary);
}

.search-suggestions ul {
    list-style: disc;
    padding-left: 20px;
}

.search-suggestions li {
    margin-bottom: 4px;
    color: var(--text-muted);
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    display: inline-block;
    background: #e9ecef;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.search-tag:hover {
    background: var(--primary);
    color: white;
}

/* Empty States */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-posts i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-posts h3 {
    margin-bottom: 12px;
    color: var(--secondary);
}

.no-posts p {
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        grid-row: span 1;
    }
    
    .blog-layout,
    .post-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-main,
    .post-article {
        padding: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .post-header {
        padding: 120px 0 40px;
    }
    
    .blog-content,
    .post-content {
        padding: 40px 0;
    }
    
    .blog-main,
    .post-article {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .post-featured-image img {
        height: 250px;
    }
}
/* ========================================
   ENHANCED BLOG CATEGORY STYLES
   ======================================== */

/* Category Badge Enhancements */
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.blog-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Specific Category Colors */
.blog-category[style*="#007bff"] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.blog-category[style*="#28a745"] {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.blog-category[style*="#ffc107"] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
    color: #212529 !important;
}

.blog-category[style*="#dc3545"] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

/* Blog Category Badge Enhancements */
.blog-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog-post-category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kültür ve Tarih Özel Stilleri */
.category-kultur-tarih .category-badge {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.category-kultur-tarih .page-header {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
}

.category-kultur-tarih .blog-category {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

/* Sidebar Category List Enhancements */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 4px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.category-list li:hover {
    transform: translateX(4px);
}

.category-list li.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.category-list li.active a {
    background: transparent !important;
    color: white !important;
}

.category-list li.active .category-count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-fast);
    border-radius: var(--radius-md);
}

.category-list a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

.category-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.category-count {
    margin-left: auto;
    background: #e9ecef;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    transition: var(--transition-fast);
}

/* Blog Card Category Badge Positioning */
.blog-card .blog-category {
    z-index: 2;
    position: relative;
}

.blog-image {
    position: relative;
}

.blog-image .blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
}

/* Featured Posts Category Styling */
.featured-card .blog-category {
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Post Meta Enhancements */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.blog-meta span:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.blog-meta i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Search Tags Enhancement */
.search-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: var(--text-color);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.search-tag:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Responsive Category Enhancements */
@media (max-width: 768px) {
    .blog-category {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .page-header .category-badge,
    .post-header .post-category {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .category-list a {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .category-color {
        width: 12px;
        height: 12px;
    }
    
    .blog-meta {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .blog-meta span {
        padding: 3px 6px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-category {
        position: static;
        margin-bottom: 12px;
        display: inline-block;
    }
    
    .blog-image .blog-category {
        position: absolute;
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .search-tag {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}
/* Blog Page Styles */
.blog-page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0F2740 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.blog-page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.blog-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.blog-breadcrumb a:hover {
    opacity: 0.8;
}

.blog-breadcrumb span {
    opacity: 0.6;
}

/* Blog Content Layout */
.blog-content {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

/* Blog Page Grid */
.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-page-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    border: 1px solid #e5e7eb;
}

.blog-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.blog-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-page-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-page-content {
    padding: 32px;
}

.blog-page-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.blog-page-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.blog-page-card h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-page-card h3 a:hover {
    color: var(--primary);
}

.blog-page-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-page-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-page-read-more:hover {
    gap: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.sidebar-widget h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form button {
    padding: 12px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.category-list a:hover {
    background: #e2e8f0;
    transform: translateX(4px);
}

.category-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-count {
    margin-left: auto;
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.newsletter-widget h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 12px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    background: #f1f5f9;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: var(--primary);
    color: white;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid #e5e7eb;
    font-weight: 600;
    transition: all 0.2s;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.no-posts i {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-page-card {
        margin: 0 16px;
    }
    
    .sidebar-widget {
        margin: 0 16px 24px;
        padding: 24px;
    }
}
/* Blog Category Page Styles */
.blog-category-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

/* Blog Category Grid */
.blog-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-category-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    border: 1px solid #e5e7eb;
}

.blog-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.blog-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-category-image .blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    margin-bottom: 0;
}

.blog-category-content {
    padding: 32px;
}

.blog-category-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.blog-category-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.blog-category-card h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-category-card h3 a:hover {
    color: var(--primary);
}

.blog-category-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-category-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-category-read-more:hover {
    gap: 12px;
}

/* Active category in sidebar */
.category-list li.active a {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.category-list li.active .category-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .blog-page-grid,
    .blog-category-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 16px;
    }
    
    .blog-page-card,
    .blog-category-card {
        margin: 0;
    }
    
    .blog-page-content,
    .blog-category-content {
        padding: 24px;
    }
    
    .blog-layout {
        gap: 32px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .blog-page-header {
        padding: 60px 0 40px;
    }
    
    .blog-page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .blog-page-header-content p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .sidebar-widget {
        margin: 0 16px 20px;
        padding: 20px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-form button {
        align-self: stretch;
    }
}
/* Blog Detail Responsive */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 0 50px;
    }
    
    .blog-breadcrumb {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 32px;
    }
    
    .blog-post-category {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
        margin-bottom: 28px;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .post-meta > div {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-post-header {
        padding: 80px 0 40px;
    }
    
    .blog-post-header-content {
        padding: 0 16px;
    }
    
    .blog-breadcrumb {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-post-category {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .post-meta > div {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}
/* Tour Cards Responsive */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 16px;
    }
    
    .tour-content {
        padding: 24px;
    }
    
    .tour-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .tour-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tour-image {
        height: 250px;
    }
    
    .tour-badge {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .tour-favorite {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .tour-info span {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tours-grid {
        padding: 0 12px;
    }
    
    .tour-card {
        margin: 0;
    }
    
    .tour-image {
        height: 220px;
    }
    
    .tour-content {
        padding: 16px;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-price strong {
        font-size: 1.4rem;
    }
}
/* Cities Styles */
.cities-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../hero-morocco-4k.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* City Cards */
.city-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.city-card.featured {
    border: 2px solid var(--primary);
}

.city-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.city-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-badge.popular {
    background: var(--warning);
}

.city-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.city-header {
    margin-bottom: 1rem;
}

.city-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.city-region {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.city-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.city-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--primary);
    width: 16px;
}

.city-actions {
    margin-top: auto;
}

.city-actions .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Cities Search */
.cities-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input-group .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    flex: 1;
}

.search-input-group .form-control:focus {
    box-shadow: none;
    outline: none;
}

.search-input-group .btn {
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    white-space: nowrap;
}

/* City Detail Page */
.city-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.city-badges {
    margin-bottom: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.badge-featured {
    background: var(--primary);
    color: white;
}

.badge-popular {
    background: var(--warning);
    color: white;
}

.city-names {
    margin-bottom: 1rem;
}

.arabic-name, .french-name {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.city-quick-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.info-item i {
    color: var(--primary);
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Gallery */
.city-gallery .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card .card-header {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
}

.sidebar-card .card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card .card-body {
    padding: 1.5rem;
}

/* Weather */
.weather-info {
    text-align: center;
}

.current-weather .temperature {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.current-weather .description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* City Stats */
.city-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 600;
    color: var(--dark);
}

.stat-value {
    font-weight: 700;
    color: var(--primary);
}

/* Related Cities */
.related-cities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-city-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--bg-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-city-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.related-city-item .city-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-city-item .city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-city-item .city-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-city-item .city-info p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .cities-hero {
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .city-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .city-description {
        font-size: 1rem;
    }
    
    .city-quick-info {
        gap: 1rem;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .city-gallery .gallery-item img {
        height: 150px;
    }
    
    .city-meta {
        gap: 0.5rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
}

/* ========================================
   TUR TARİHLERİ LİSTE FORMATINDA
   ======================================== */

.tour-dates-main {
    padding: 4rem 0;
    background: var(--background);
}

.tour-dates-main .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.tour-dates-main .section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.dates-list-view {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.month-list-section {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E5E7EB;
}

.month-list-header {
    background: #374151;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.date-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    transition: var(--transition-normal);
}

.date-list-item:last-child {
    border-bottom: none;
}

.date-list-item:hover {
    background: #F9FAFB;
}

.date-list-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.date-day-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    min-width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.day-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

/* Takvim sayfası için */
.calendar-day-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    min-width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.calendar-day-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.day-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.day-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

.date-range-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.date-notes {
    font-size: 0.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.date-notes i {
    font-size: 0.75rem;
}

.date-status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Doluluk Göstergesi */
.occupancy-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.occupancy-bar {
    width: 100px;
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.occupancy-fill {
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

/* Doluluk oranına göre renk */
.occupancy-fill[style*="width: 0%"],
.occupancy-fill[style*="width: 1%"],
.occupancy-fill[style*="width: 2%"],
.occupancy-fill[style*="width: 3%"],
.occupancy-fill[style*="width: 4%"],
.occupancy-fill[style*="width: 5%"],
.occupancy-fill[style*="width: 6%"],
.occupancy-fill[style*="width: 7%"],
.occupancy-fill[style*="width: 8%"],
.occupancy-fill[style*="width: 9%"],
.occupancy-fill[style*="width: 10%"],
.occupancy-fill[style*="width: 11%"],
.occupancy-fill[style*="width: 12%"],
.occupancy-fill[style*="width: 13%"],
.occupancy-fill[style*="width: 14%"],
.occupancy-fill[style*="width: 15%"],
.occupancy-fill[style*="width: 16%"],
.occupancy-fill[style*="width: 17%"],
.occupancy-fill[style*="width: 18%"],
.occupancy-fill[style*="width: 19%"],
.occupancy-fill[style*="width: 20%"],
.occupancy-fill[style*="width: 21%"],
.occupancy-fill[style*="width: 22%"],
.occupancy-fill[style*="width: 23%"],
.occupancy-fill[style*="width: 24%"],
.occupancy-fill[style*="width: 25%"],
.occupancy-fill[style*="width: 26%"],
.occupancy-fill[style*="width: 27%"],
.occupancy-fill[style*="width: 28%"],
.occupancy-fill[style*="width: 29%"],
.occupancy-fill[style*="width: 30%"],
.occupancy-fill[style*="width: 31%"],
.occupancy-fill[style*="width: 32%"],
.occupancy-fill[style*="width: 33%"],
.occupancy-fill[style*="width: 34%"],
.occupancy-fill[style*="width: 35%"],
.occupancy-fill[style*="width: 36%"],
.occupancy-fill[style*="width: 37%"],
.occupancy-fill[style*="width: 38%"],
.occupancy-fill[style*="width: 39%"],
.occupancy-fill[style*="width: 40%"],
.occupancy-fill[style*="width: 41%"],
.occupancy-fill[style*="width: 42%"],
.occupancy-fill[style*="width: 43%"],
.occupancy-fill[style*="width: 44%"],
.occupancy-fill[style*="width: 45%"],
.occupancy-fill[style*="width: 46%"],
.occupancy-fill[style*="width: 47%"],
.occupancy-fill[style*="width: 48%"],
.occupancy-fill[style*="width: 49%"] {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.occupancy-fill[style*="width: 50%"],
.occupancy-fill[style*="width: 51%"],
.occupancy-fill[style*="width: 52%"],
.occupancy-fill[style*="width: 53%"],
.occupancy-fill[style*="width: 54%"],
.occupancy-fill[style*="width: 55%"],
.occupancy-fill[style*="width: 56%"],
.occupancy-fill[style*="width: 57%"],
.occupancy-fill[style*="width: 58%"],
.occupancy-fill[style*="width: 59%"],
.occupancy-fill[style*="width: 60%"],
.occupancy-fill[style*="width: 61%"],
.occupancy-fill[style*="width: 62%"],
.occupancy-fill[style*="width: 63%"],
.occupancy-fill[style*="width: 64%"],
.occupancy-fill[style*="width: 65%"],
.occupancy-fill[style*="width: 66%"],
.occupancy-fill[style*="width: 67%"],
.occupancy-fill[style*="width: 68%"],
.occupancy-fill[style*="width: 69%"],
.occupancy-fill[style*="width: 70%"],
.occupancy-fill[style*="width: 71%"],
.occupancy-fill[style*="width: 72%"],
.occupancy-fill[style*="width: 73%"],
.occupancy-fill[style*="width: 74%"] {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

.occupancy-fill[style*="width: 75%"],
.occupancy-fill[style*="width: 76%"],
.occupancy-fill[style*="width: 77%"],
.occupancy-fill[style*="width: 78%"],
.occupancy-fill[style*="width: 79%"],
.occupancy-fill[style*="width: 80%"],
.occupancy-fill[style*="width: 81%"],
.occupancy-fill[style*="width: 82%"],
.occupancy-fill[style*="width: 83%"],
.occupancy-fill[style*="width: 84%"],
.occupancy-fill[style*="width: 85%"],
.occupancy-fill[style*="width: 86%"],
.occupancy-fill[style*="width: 87%"],
.occupancy-fill[style*="width: 88%"],
.occupancy-fill[style*="width: 89%"],
.occupancy-fill[style*="width: 90%"],
.occupancy-fill[style*="width: 91%"],
.occupancy-fill[style*="width: 92%"],
.occupancy-fill[style*="width: 93%"],
.occupancy-fill[style*="width: 94%"],
.occupancy-fill[style*="width: 95%"],
.occupancy-fill[style*="width: 96%"],
.occupancy-fill[style*="width: 97%"],
.occupancy-fill[style*="width: 98%"],
.occupancy-fill[style*="width: 99%"],
.occupancy-fill[style*="width: 100%"] {
    background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
}

.occupancy-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.date-list-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.date-price-info {
    text-align: right;
    min-width: 100px;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.no-price {
    color: var(--text-muted);
    font-style: italic;
}

.btn-apply {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    min-width: 90px;
}

.btn-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-disabled {
    background: #9CA3AF;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
    min-width: 90px;
}

/* Durum Renkleri */
.date-list-item.status-available .date-status-info {
    color: #059669;
}

.date-list-item.status-available .date-status-info i {
    color: #059669;
}

.date-list-item.status-limited .date-status-info {
    color: #D97706;
}

.date-list-item.status-limited .date-status-info i {
    color: #D97706;
}

.date-list-item.status-full .date-status-info {
    color: #DC2626;
}

.date-list-item.status-full .date-status-info i {
    color: #DC2626;
}

.date-list-item.status-cancelled .date-status-info {
    color: #6B7280;
}

.date-list-item.status-cancelled .date-status-info i {
    color: #6B7280;
}

.show-all-dates-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-show-all {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-show-all:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .date-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .date-list-left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .date-list-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .date-price-info {
        text-align: left;
    }
    
    .day-number {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .tour-dates-main {
        padding: 2rem 0;
    }
}

/* ========================================
   TUR TARİHLERİ LİSTESİ (ESKİ - KALDIRILDI)
   ======================================== */

.tour-dates-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.tour-dates-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-dates-section h3 i {
    color: var(--primary);
}

.dates-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.month-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.month-header {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.date-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.date-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.date-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.day-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.day-name {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-range {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-range i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.date-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

.date-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.price-info {
    text-align: right;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.date-apply-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
}

.btn-disabled {
    background: #9CA3AF;
    color: white;
    border: none;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Durum Renkleri */
.date-item.status-available .date-status {
    color: #059669;
}

.date-item.status-available .date-status i {
    color: #059669;
}

.date-item.status-limited .date-status {
    color: #D97706;
}

.date-item.status-limited .date-status i {
    color: #D97706;
}

.date-item.status-full .date-status {
    color: #DC2626;
}

.date-item.status-full .date-status i {
    color: #DC2626;
}

.date-item.status-cancelled .date-status {
    color: #6B7280;
}

.date-item.status-cancelled .date-status i {
    color: #6B7280;
}

.show-all-dates {
    text-align: center;
    margin-top: 1rem;
}

.show-all-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.show-all-btn:hover {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .date-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .date-info {
        width: 100%;
    }
    
    .date-price {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-info {
        text-align: left;
    }
}
/* ========================================
   TAKVIM TARİH STİLLERİ - EN GÜÇLÜ SELECTOR
   ======================================== */

.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.available {
    background: #dcfce7 !important;
    color: #166534 !important;
    border: 2px solid #22C55E !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3) !important;
}

.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.limited {
    background: #fef3c7 !important;
    color: #d97706 !important;
    border: 2px solid #f59e0b !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3) !important;
}

.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.full {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    border: 2px solid #ef4444 !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3) !important;
}

.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.available:hover,
.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.available.selected {
    background: #22C55E !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.limited:hover,
.tour-sidebar .booking-widget .calendar-widget .calendar-grid .day.limited.selected {
    background: #f59e0b !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* ========================================
   BAŞVURU FORMU STİLLERİ
   ======================================== */

.application-form-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

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

.application-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.application-form-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.form-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
}

.form-card {
    border-bottom: 1px solid #f3f4f6;
}

.form-card:last-of-type {
    border-bottom: none;
}

.form-card-header {
    padding: 25px 30px 15px;
    background: #fafbfc;
    border-bottom: 1px solid #e5e7eb;
}

.form-card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card-header i {
    color: #D4442C;
    font-size: 16px;
}

.form-card-body {
    padding: 25px 30px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-label.required::after {
    content: " *";
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #D4442C;
    box-shadow: 0 0 0 3px rgba(212, 68, 44, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* Responsive form-row */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Arkadaş Ekleme */
.companion-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.companion-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 15px 20px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.companion-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-remove-companion {
    background: #ef4444;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}

.btn-remove-companion:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.companion-content {
    padding: 20px;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.form-check-label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
}

.form-check-label a {
    color: #D4442C;
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #D4442C 0%, #B33620 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B33620 0%, #9A2B1A 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 68, 44, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: #D4442C;
    border: 2px solid #D4442C;
}

.btn-outline-primary:hover {
    background: #D4442C;
    color: white;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Actions */
.form-actions {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    background: #fafbfc;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    min-width: 200px;
}

/* Application Form Layout */
.application-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Responsive */
@media (max-width: 1200px) {
    .application-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .application-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .tour-sidebar {
        order: -1;
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .tour-sidebar.sticky {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        z-index: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-card-body {
        padding: 20px;
    }
    
    .application-form-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .application-layout {
        gap: 16px;
        padding: 0 12px;
    }
    
    .form-card-body {
        padding: 16px;
    }
    
    .form-header {
        padding: 20px 16px;
    }
    
    .form-header h1 {
        font-size: 1.5rem;
    }
    
    /* Mobilde sidebar daha kompakt */
    .tour-sidebar .booking-widget {
        margin-bottom: 20px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
}

@media (max-width: 576px) {
    .application-layout {
        gap: 12px;
        padding: 0 8px;
    }
    
    .form-card {
        border-radius: 12px;
    }
    
    .form-card-body {
        padding: 12px;
    }
    
    .form-header {
        padding: 16px 12px;
    }
    
    .form-header h1 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-actions {
        padding: 16px 12px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Mobilde sidebar header daha küçük */
    .tour-sidebar [style*="padding: 16px 20px"] {
        padding: 12px 16px !important;
    }
    
    .tour-sidebar [style*="font-size: 20px"] {
        font-size: 18px !important;
    }
    
    .tour-sidebar [style*="padding: 16px 20px; border-radius"] {
        padding: 12px 16px !important;
    }
}

/* Scroll bar styling */
.tour-sidebar.sticky::-webkit-scrollbar {
    width: 4px;
}

.tour-sidebar.sticky::-webkit-scrollbar-track {
    background: transparent;
}

.tour-sidebar.sticky::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.tour-sidebar.sticky::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.preview-tour {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.preview-tour h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-info-compact {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #6b7280;
}

.tour-info-compact span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-info-compact i {
    color: #3b82f6;
}

.preview-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f9fafb;
    font-size: 13px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.price-row {
    background: #fef3c7;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #f59e0b;
    margin: 8px 0;
}

.summary-row.price-row.has-price {
    background: #dcfce7;
    border-color: #22c55e;
}

.summary-row .label {
    font-weight: 600;
    color: #374151;
}

.summary-row .value {
    color: #6b7280;
    text-align: right;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-row .value.price {
    font-weight: 700;
    color: #059669;
    font-size: 14px;
}

.contact-quick {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-btn.phone {
    background: #3b82f6;
    color: white;
}

.contact-btn.phone:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.contact-btn.whatsapp {
    background: #22c55e;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #16a34a;
    transform: translateY(-1px);
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #374151;
    text-align: center;
    font-weight: 600;
}

.badge-item i {
    color: #22c55e;
    font-size: 14px;
    margin-bottom: 2px;
}

/* Scroll bar styling */
.tour-sidebar.sticky::-webkit-scrollbar {
    width: 4px;
}

.tour-sidebar.sticky::-webkit-scrollbar-track {
    background: transparent;
}

.tour-sidebar.sticky::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.tour-sidebar.sticky::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
    
    .form-header {
        padding: 25px 20px 15px;
    }
    
    .form-card-header {
        padding: 20px 20px 10px;
    }
}

@media (max-width: 768px) {
    .application-form-section {
        padding: 20px 0 40px;
    }
    
    .application-form-section .container {
        padding: 0 15px;
    }
    
    .form-header h1 {
        font-size: 24px;
    }
    
    .form-card-body {
        padding: 15px;
    }
    
    .form-actions {
        padding: 20px 15px;
    }
    
    .btn-lg {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .companion-content {
        padding: 15px;
    }
    
    .preview-content {
        padding: 15px;
    }
    
    .preview-header {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .form-header {
        padding: 20px 15px 10px;
    }
    
    .form-card-header {
        padding: 15px 15px 8px;
    }
    
    .form-card-header h3 {
        font-size: 16px;
    }
    
    .form-card-body {
        padding: 12px;
    }
    
    .form-actions {
        padding: 15px 12px;
    }
    
    .companion-header {
        padding: 12px 15px;
    }
    
    .companion-content {
        padding: 12px;
    }
    
    .btn-remove-companion {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-label {
        font-size: 13px;
    }
}

/* Kısa Açıklama */
.tour-short-desc {
    background: linear-gradient(135deg, rgba(199, 144, 86, 0.08), rgba(199, 144, 86, 0.03));
    border-left: 4px solid var(--primary, #C79056);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Öne Çıkan Özellikler */
.tour-highlights {
    margin-bottom: 40px;
}

.tour-highlights h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(199, 144, 86, 0.1), rgba(199, 144, 86, 0.04));
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--secondary, #1a1a2e);
}

.highlight-item i {
    color: var(--primary, #C79056);
    font-size: 0.85rem;
}

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