/**
 * SIDE TOURS - Homepage Specific Styles
 * Antik Side Theme | Ancient Hero, Manuscript Cards, Stone Carvings
 */

/* ===================================
   HERO SECTION — Antik Şehir Girişi
   =================================== */
.hero-section {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1000ms ease, visibility 1000ms ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Antik Overlay — Toprak ve gün batımı tonları */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.85) 0%, rgba(198, 93, 58, 0.75) 100%);
    z-index: 1;
}

/* Antik dokuma deseni overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(212, 165, 116, 0.04) 80px, rgba(212, 165, 116, 0.04) 81px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FBF7F0;
    padding: var(--spacing-xl);
}

/* Üst ornament */
.hero-content::before {
    content: '◆ ◆ ◆';
    display: block;
    color: #D4A574;
    font-size: 12px;
    letter-spacing: 16px;
    margin-bottom: 24px;
    opacity: 0.85;
    animation: fadeInUp 800ms ease;
}

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FBF7F0;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 800ms ease 100ms both;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(251, 247, 240, 0.95);
    margin-bottom: var(--spacing-xl);
    max-width: 720px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 800ms ease 250ms both;
    position: relative;
    padding-top: 18px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #D4A574;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeInUp 800ms ease 400ms both;
}

/* Hero Controls — Antik Tarz */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-xl);
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 52px;
    height: 52px;
    background-color: rgba(61, 40, 23, 0.4);
    border: 1px solid #D4A574;
    border-radius: 2px;
    color: #D4A574;
    cursor: pointer;
    transition: all 0.35s ease;
    pointer-events: auto;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-prev::before,
.hero-next::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    pointer-events: none;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: #D4A574;
    border-color: #B08856;
    color: #2A1A0E;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
}

.hero-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 14px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid rgba(251, 247, 240, 0.6);
    border-radius: 0;
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background-color: #D4A574;
    border-color: #D4A574;
    transform: rotate(45deg) scale(1.3);
    box-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SEARCH SECTION — Antik Sorgu Levhası
   =================================== */
.search-section {
    margin-top: 20px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--spacing-2xl);
}

.search-box {
    background-color: #FDF9F2;
    border: 1px solid #D4A574;
    border-radius: 2px;
    padding: var(--spacing-lg);
    box-shadow: 0 12px 40px rgba(61, 40, 23, 0.18);
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C65D3A, #D4A574, #C65D3A);
}

.search-box::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    pointer-events: none;
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
    gap: var(--spacing-sm);
    align-items: center;
    position: relative;
    z-index: 1;
}

.search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field svg {
    position: absolute;
    left: var(--spacing-md);
    width: 18px;
    height: 18px;
    color: #B08856;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 13px 12px 13px 44px;
    border: 1px solid #D4A574;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #3D2817;
    background: #FFFFFF;
    transition: all 0.25s ease;
}

.search-input:focus {
    outline: none;
    border-color: #C65D3A;
    box-shadow: 0 0 0 3px rgba(198, 93, 58, 0.12);
}

.search-input::placeholder {
    color: #9C8775;
    font-style: italic;
}

.search-select {
    width: 100%;
    padding: 13px 38px 13px 14px;
    border: 1px solid #D4A574;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #3D2817;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23B08856' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.search-select:focus {
    outline: none;
    border-color: #C65D3A;
    box-shadow: 0 0 0 3px rgba(198, 93, 58, 0.12);
}

.search-btn {
    padding: 13px 22px;
    white-space: nowrap;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-header::before {
    content: '◆ ◆ ◆';
    display: block;
    color: #D4A574;
    font-size: 10px;
    letter-spacing: 12px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.section-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 42px;
    font-weight: 600;
    color: #2A1A0E;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.4px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 19px;
    font-style: italic;
    color: #6B5444;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ===================================
   FEATURED TOURS SECTION
   =================================== */
.featured-tours-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.featured-tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(212, 165, 116, 0.02) 80px, rgba(212, 165, 116, 0.02) 81px);
    pointer-events: none;
    z-index: 0;
}

.featured-tours-section > * {
    position: relative;
    z-index: 1;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.tour-card {
    background-color: #FDF9F2;
    border: 1px solid #E8DCC4;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C65D3A, #D4A574, #C65D3A);
    z-index: 3;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(61, 40, 23, 0.16);
    border-color: #D4A574;
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
}

.tour-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D4A574;
    opacity: 0.6;
    z-index: 2;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: sepia(0.1) saturate(1.05);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
    filter: sepia(0) saturate(1.1);
}

.tour-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 6px 14px;
    background-color: #C65D3A;
    color: #FBF7F0;
    border: 1px solid #A04826;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.25);
    z-index: 2;
}

.tour-content {
    padding: var(--spacing-lg);
}

.tour-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.tour-title a {
    color: #2A1A0E;
    transition: color 0.25s ease;
}

.tour-title a:hover {
    color: #C65D3A;
}

.tour-description {
    color: #6B5444;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px dashed #E8DCC4;
}

.tour-duration,
.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 11px;
    color: #6B5444;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tour-duration svg,
.tour-location svg {
    width: 14px;
    height: 14px;
    color: #D4A574;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 10px;
    color: #6B5444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.price-amount {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    color: #C65D3A;
    letter-spacing: 0.2px;
    line-height: 1.1;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: #FDF9F2;
    border: 1px dashed #D4A574;
    border-radius: 2px;
}

.empty-state svg {
    margin: 0 auto var(--spacing-lg);
    color: #D4A574;
    opacity: 0.4;
}

.empty-state h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 24px;
    color: #2A1A0E;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.empty-state h3::after {
    content: ' ◆';
    color: #D4A574;
    font-size: 14px;
}

.empty-state p {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 17px;
    font-style: italic;
    color: #6B5444;
    line-height: 1.6;
}

/* ===================================
   CATEGORIES SECTION — Antik Vitrin Galerisi
   =================================== */
.categories-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8DCC4 100%);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(198, 93, 58, 0.03) 80px, rgba(198, 93, 58, 0.03) 81px);
    pointer-events: none;
}

.categories-section > * {
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    display: block;
    background: #FDF9F2;
    border: 1px solid #D4A574;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(61, 40, 23, 0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 93, 58, 0.04) 0%, rgba(212, 165, 116, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C65D3A, #D4A574, #C65D3A);
    z-index: 4;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 44px rgba(61, 40, 23, 0.2);
    border-color: #C65D3A;
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(42, 26, 14, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: sepia(0.12) saturate(1.05);
}

.category-card:hover .category-image img {
    transform: scale(1.12) rotate(1.5deg);
    filter: sepia(0) saturate(1.1);
}

.category-content {
    position: relative;
    padding: 32px 25px 25px;
    text-align: center;
    background: #FDF9F2;
    z-index: 2;
}

/* Kategori ikonu — Antik Madalya */
.category-icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C65D3A 0%, #A04826 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FBF7F0;
    box-shadow: 0 8px 20px rgba(198, 93, 58, 0.35);
    border: 3px solid #FDF9F2;
    transition: all 0.4s ease;
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(251, 247, 240, 0.3);
    pointer-events: none;
}

.category-card:hover .category-icon {
    transform: translateX(-50%) scale(1.12) rotate(45deg);
    box-shadow: 0 12px 30px rgba(198, 93, 58, 0.5);
    background: linear-gradient(135deg, #D4A574 0%, #B08856 100%);
}

.category-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2A1A0E;
    margin: 24px 0 12px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #C65D3A;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 11px;
    font-weight: 600;
    color: #6B5444;
    background: transparent;
    border: 1px solid #D4A574;
    padding: 6px 16px;
    border-radius: 2px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: #C65D3A;
    border-color: #A04826;
    color: #FBF7F0;
    transform: scale(1.05);
}

/* ===================================
   WHY CHOOSE US SECTION — Antik Sütunlar
   =================================== */
.why-section {
    padding: var(--spacing-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: #FDF9F2;
    border: 1px solid #E8DCC4;
    border-radius: 2px;
    transition: all 0.35s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(61, 40, 23, 0.12);
    border-color: #D4A574;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4A574 0%, #B08856 100%);
    border: 1px solid #B08856;
    border-radius: 2px;
    color: #2A1A0E;
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.25);
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(42, 26, 14, 0.2);
    pointer-events: none;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #C65D3A 0%, #A04826 100%);
    color: #FBF7F0;
    transform: rotate(-3deg) scale(1.05);
}

.feature-card:hover .feature-icon::before {
    border-color: rgba(251, 247, 240, 0.3);
}

.feature-icon svg {
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 19px;
    font-weight: 600;
    color: #2A1A0E;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.feature-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #D4A574;
    margin: 10px auto 0;
}

.feature-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 17px;
    font-style: italic;
    color: #6B5444;
    line-height: 1.6;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-secondary);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(212, 165, 116, 0.025) 80px, rgba(212, 165, 116, 0.025) 81px);
    pointer-events: none;
}

.blog-section > * {
    position: relative;
    z-index: 1;
}

.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.blog-section .blog-card {
    background-color: #FDF9F2;
    border: 1px solid #E8DCC4;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(61, 40, 23, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.blog-section .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C65D3A, #D4A574, #C65D3A);
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.blog-section .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(61, 40, 23, 0.14);
    border-color: #D4A574;
}

.blog-section .blog-card:hover::before {
    opacity: 1;
}

.blog-image {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D4A574;
    opacity: 0.6;
    z-index: 2;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: sepia(0.1) saturate(1.05);
}

.blog-section .blog-card:hover .blog-image img {
    transform: scale(1.08);
    filter: sepia(0) saturate(1.1);
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px dashed #E8DCC4;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 11px;
    color: #6B5444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.blog-title a {
    color: #2A1A0E;
    transition: color 0.25s ease;
}

.blog-title a:hover {
    color: #C65D3A;
}

.blog-excerpt {
    color: #6B5444;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C65D3A;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.blog-link:hover {
    gap: 14px;
    color: #A04826;
    border-bottom-color: #D4A574;
}

.blog-link svg {
    width: 14px;
    height: 14px;
}

/* ===================================
   CTA SECTION — Antik Davet
   =================================== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #3D2817 0%, #5A3A22 100%);
    color: #FBF7F0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(212, 165, 116, 0.04) 100px, rgba(212, 165, 116, 0.04) 101px),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(212, 165, 116, 0.04) 100px, rgba(212, 165, 116, 0.04) 101px);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574 30%, #C65D3A 50%, #D4A574 70%, transparent);
}

.cta-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content::before {
    content: '◆ ◆ ◆';
    display: block;
    color: #D4A574;
    font-size: 12px;
    letter-spacing: 14px;
    margin-bottom: 22px;
    opacity: 0.85;
}

.cta-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 44px;
    font-weight: 600;
    color: #FBF7F0;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.cta-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 21px;
    font-style: italic;
    color: rgba(251, 247, 240, 0.92);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 18px;
    position: relative;
}

.cta-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #D4A574;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta-actions .btn-primary {
    background-color: #D4A574;
    color: #2A1A0E;
    border-color: #B08856;
}

.cta-actions .btn-primary:hover {
    background-color: #B08856;
    border-color: #D4A574;
    color: #2A1A0E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.35);
}

.cta-actions .btn-secondary {
    background-color: transparent;
    color: #FBF7F0;
    border: 1px solid #FBF7F0;
}

.cta-actions .btn-secondary:hover {
    background-color: rgba(251, 247, 240, 0.1);
    border-color: #D4A574;
    color: #D4A574;
    transform: translateY(-3px);
}

/* ===================================
   📱 MOBILE OVERRIDES (max-width: 767px)
   Search Form 2x2 Grid + Tam Genişlik Buton
   Bu kurallar dosyanın sonunda olduğu için
   yukarıdaki masaüstü kuralını override eder.
   =================================== */
@media (max-width: 767px) {
    
    /* Search Form Mobile Layout
       Satır 1: Tur Ara | Lokasyon
       Satır 2: Kategori | Sıralama
       Satır 3: ARA butonu (tam genişlik) */
    .search-form {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .search-group,
    .search-field {
        width: 100%;
        min-width: 0;
    }
    
    .search-btn {
        grid-column: 1 / -1;
        width: 100%;
        padding: 14px 22px;
    }
    
    /* Mobile'da hero biraz daha küçük */
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    /* Section title küçültme */
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
}

/* ===================================
   📱 SMALL MOBILE (max-width: 425px)
   Çok dar ekranda tek sütun fallback
   =================================== */
@media (max-width: 425px) {
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-btn {
        grid-column: 1;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-content::before {
        letter-spacing: 10px;
        font-size: 10px;
        margin-bottom: 18px;
    }
}

/* DEBUG: Search Form Mobile - Garanti çözüm */
@media (max-width: 767px) {
    .search-form {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    
    .search-form > div,
    .search-form > .search-group,
    .search-form > .search-field {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .search-form > .search-input,
    .search-form > .search-select,
    .search-form .search-input,
    .search-form .search-select {
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .search-form .search-btn,
    .search-form > button[type="submit"] {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}