/* 
   Hac ve Umre Turizm Web Sitesi - Genel Arayüz CSS Tasarımı
   Renk Paleti: Derin Zümrüt Yeşili & Klasik Altın Sarısı
*/

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

:root {
    --primary-color: #0c5c3a;
    --primary-hover: #08432a;
    --secondary-color: #d4af37;
    --secondary-hover: #bda030;
    --accent-color: #c5a059;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fafbf9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

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

/* Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Header & Menü Tasarımı */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-top {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.top-info {
    flex: 1 1 auto;
    min-width: 0;
}

.top-info span {
    margin-right: 18px;
    white-space: nowrap;
}

.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 0 0 auto;
    flex-wrap: nowrap;
}

.top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
}

.top-social a:hover {
    color: var(--secondary-color);
}

.top-social a i {
    font-size: 0.95rem;
    color: inherit !important;
}

.social-icon i {
    color: #ffffff !important;
}

.social-icon:hover i {
    color: var(--dark-color) !important;
}

/* X (Twitter) — beyaz SVG */
.icon-x {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.top-social .social-x:hover {
    color: var(--secondary-color);
}

.footer-socials .social-x {
    color: #ffffff;
}

.footer-socials .social-x:hover {
    color: var(--dark-color);
}

.footer-socials .social-x:hover .icon-x {
    fill: currentColor;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
    margin-left: 5px;
}

.logo img {
    max-height: 85px;
    width: auto;
    object-fit: contain;
    margin-right: 14px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero / Banner Tasarımı */
.hero {
    position: relative;
    color: var(--white);
    padding: 140px 0 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-color); /* Fallback */
}

/* Hero Arka Plan Slider Track */
.hero-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide {
    width: 25%;
    height: 100%;
    flex-shrink: 0;
}

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

/* Koyu Overlay - metinlerin okunabilirliğini garanti altına alır */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12, 92, 58, 0.82), rgba(8, 67, 42, 0.92));
    z-index: 2;
}

/* Hero Slider Noktaları */
.hero-slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active, .hero-dot:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.25);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #fafbf9;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero-actions .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Sayfa Bannerı (Mini Hero) */
.page-banner {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

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

/* Bölümler (Sections) */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light-color);
}

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

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Tur Kartları */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.tour-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

.tour-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.tour-category.umre { background-color: var(--primary-color); }
.tour-category.hac { background-color: var(--dark-color); }
.tour-category.kultur { background-color: #7c2d12; } /* Pas Rengi */

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.tour-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.45;
    word-break: break-word;
}

.tour-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.tour-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Filtreleme Butonları */
.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Blog Kartları */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

.blog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.45;
    word-break: break-word;
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.blog-link:hover {
    color: var(--secondary-color);
}

/* Tur Detay Sayfası Tasarımı */
.tour-details-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.tour-details-main {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

.tour-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    height: 450px;
    background-color: #e2e8f0;
}

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

.tour-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-meta-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.tour-meta-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.tour-meta-val.price-val {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tour-section {
    margin-bottom: 45px;
}

.tour-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.tour-itinerary {
    line-height: 1.8;
}

.tour-itinerary h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tour-itinerary p {
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Yan Panel (Sidebar Form) */
.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.booking-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-align: center;
}

.booking-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 25px;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
    background-color: var(--light-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(12, 92, 58, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    width: 100%;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Blog Detay Sayfası Tasarımı */
.blog-details-main {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.blog-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    height: 480px;
    background-color: #e2e8f0;
}

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

.blog-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-content h2, .blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-content blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 10px 20px;
    font-style: italic;
    margin: 30px 0;
    color: var(--text-light);
    background-color: #f8fafc;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 10px;
}

/* İletişim Sayfası Tasarımı */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.contact-info-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    line-height: 1;
}

.contact-info-text h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-side {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-desc {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Hakkımızda / Kurumsal Sayfası */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

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

/* About Slider Track & Slide */
.about-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.about-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
}

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

/* Glassmorphism overlay card on slider */
.about-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 300px;
    background: rgba(12, 92, 58, 0.88); /* Semi-transparent Emerald green */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.about-overlay-logo {
    background-color: var(--white);
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    width: 110px;
    height: 50px;
}

.about-overlay-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.about-overlay-card h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-overlay-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-text {
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(12, 92, 58, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Neden Biz Bölümü */
.features-section {
    background: linear-gradient(rgba(12, 92, 58, 0.95), rgba(12, 92, 58, 0.95)), url('../images/pattern.png') center/cover;
    color: var(--white);
}

.features-section .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

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

.feature-card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* Footer Tasarımı */
.footer {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.93)), url('../uploads/blog_medine.png') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--secondary-color);
    animation: footerBackgroundPan 35s linear infinite alternate;
}

@keyframes footerBackgroundPan {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-contact-icon {
    color: var(--secondary-color);
    margin-top: 3px;
}

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

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Mobil Menü Uyumluluğu */
@media (max-width: 992px) {
    .logo {
        font-size: 1.6rem;
    }
    .logo img {
        max-height: 70px;
    }

    .about-overlay-card {
        padding: 20px 15px;
        max-width: 320px;
    }
    .about-overlay-card h3 {
        font-size: 1.6rem;
    }
    .about-overlay-card p {
        font-size: 0.95rem;
    }
    .about-overlay-logo {
        width: 110px;
        height: 52px;
        margin-bottom: 12px;
    }

    .navbar {
        padding: 20px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 110px; /* Header yüksekliğine göre */
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 20px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tour-details-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .top-info span:last-child {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-top {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 500px;
        padding: 100px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.08) translateY(-3px);
    color: #ffffff;
}

.whatsapp-tooltip {
    visibility: hidden;
    opacity: 0;
    width: 140px;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    left: 75px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    transform: translateX(-10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Phone Floating Button */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.phone-float:hover {
    background-color: var(--secondary-hover);
    transform: scale(1.08) translateY(-3px);
    color: var(--white);
}

.phone-tooltip {
    visibility: hidden;
    opacity: 0;
    width: 140px;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    right: 75px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    transform: translateX(10px);
}

.phone-float:hover .phone-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--primary-hover);
    border-color: var(--white);
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Responsive adjustment for floating buttons on mobile */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on small mobile screens */
    }
    .phone-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .phone-tooltip {
        display: none;
    }
    .scroll-top-btn {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobil Yatay Kayar Kartlar (Slider) */
@media (max-width: 768px) {
    .tours-grid, .blog-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        padding: 10px 5px 25px 5px !important;
        margin: 0 -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        scrollbar-width: none; /* Firefox için barı gizle */
        -webkit-overflow-scrolling: touch;
        align-items: stretch !important;
    }
    
    .tours-grid::-webkit-scrollbar, .blog-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Webkit için barı gizle */
    }
    
    .tour-card, .blog-card {
        flex: 0 0 290px !important;
        width: 290px !important;
        scroll-snap-align: start;
        margin-bottom: 0 !important;
        height: auto !important;
    }
}

