/* Base Styles */
:root {
    --primary-color: #fd904d;
    --primary-light: #C8E6C9;
    --secondary-color: #FFC107;
    --secondary-dark: #FFA000;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --background-light: #F5F5F5;
    --border-color: #E0E0E0;
    --success-color: #075287;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --info-color: #2196F3;
    --font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
/* Font optimization for mobile */
* {
    font-variant-ligatures: none;
    -webkit-font-feature-settings: "liga" 0;
    font-feature-settings: "liga" 0;
}

body {
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
}
/* Mobile font rendering fix */
@media (max-width: 768px) {
    * {
        font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    body, body * {
        font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
        font-display: swap;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Site Background */
body {
    margin: 0;
    padding: 0;
    background: url('/images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.main-menu {
    display: flex;
    gap: -10rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 0.5rem;
    display: block;
}

.main-menu li a.active,
.main-menu li a:hover {
    background: #9dc6fd;
    color: #fff;
    border-radius: 4px;
}


.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 1.5rem;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.main-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #333;
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-menu.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    header {
        position: relative;
    }
}

/* Tour Cards Section */
.tour-list-cards .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tour-list-cards .tour-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tour-list-cards .fav-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
}

.tour-list-cards img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-list-cards .card-body {
    padding: 1rem;
    /* Alt panelin dört köşesini yuvarlamak için */
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.tour-list-cards .card-body h3 {
    margin: 0 0 .25rem;
    font-size: 1.3rem;
}

.tour-list-cards .card-body .location {
    font-size: .9rem;
    color: #666;
    margin-bottom: .75rem;
}

.tour-list-cards .meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    margin-bottom: .75rem;
}

.tour-list-cards .meta .price {
    margin-left: auto;
    font-weight: bold;
}

.tour-list-cards .arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f56c17;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.tour-list-cards .explore-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.tour-list-cards .btn-explore {
    background: #f56c17;
    color: #fff;
    padding: .75rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
}

/* style.css veya inline <style>'ınızın en altına ekleyin */
.search-filters {
    position: relative;
    margin-top: 1rem;
    /* slider'ın altına sarkıtmak için */
    margin-bottom: 2rem;
    z-index: 2;
    padding: 0 1rem;
}

.search-filters .filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    align-items: center;
}

.search-filters .filter-group {
    position: relative;
    flex: 1 1 200px;
}

.search-filters select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
}

/* ufak ok ikonu için pseudo-element */
.search-filters .filter-group::after {
    content: "▼";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.7rem;
    color: #333;
}

.search-filters .find-now {
    flex: 0 0 auto;
    background: #fd904d;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.search-filters .find-now:hover {
    background: #f56c17;
    transform: translateY(-2px);
}

/* Responsive: mobilde dikey yığılma */
@media (max-width: 768px) {
    .search-filters .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-filters .find-now {
        width: 100%;
        text-align: center;
    }
}

/* floating islands effect */
.features.floating-islands {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.features.floating-islands .container {
    position: relative;
    z-index: 1;

}

.features.floating-islands .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.features.floating-islands .feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


/* track'ı yatay flex yapıp gizle */
.slider-container {
    position: relative;
    overflow: hidden;
    height: 400px;
    /* önceki sabit yüksekliğinizi koruyun */
    border-radius: 16px;
}

/* .slider-track zaten tanımlıysa sadece transition ekleyin */
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

/* Her slide %100 genişlik olsun */
.slider-item {
    flex: 0 0 100%;
    position: relative;
}

/* Görüntüleme kontrolü JS'de map edilecek; display:none değil */


.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* prev/next butonları zaten konumlu */



/* veya eğer HTML'de slider'ı <section class="intro-slider"> içine aldıysanız: */
.intro-slider {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    margin-top: 1%;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 1%;
    padding: 1% 1% 1% 1%;
}

.slider-grid {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 2rem;
    align-items: center;
}

.slider-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slider-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.slider-item {
    display: none;
    position: relative;
}

.slider-item.active {
    display: block;
}

.slider-item img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.slider-caption .flag {
    font-size: 1.2rem;
}

.slider-caption strong {
    display: block;
    margin: .5rem 0;
    font-size: 1.1rem;
}

.slider-caption p {
    font-size: .9rem;
    margin-bottom: .5rem;
}

.slider-caption .stars {
    color: gold;
    margin-bottom: .5rem;
}

.slider-caption .slider-next {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.slider-prev,
.slider-next-all {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

.slider-prev {
    left: 0.5rem;
}

.slider-next-all {
    right: 0.5rem;
}

/* (Aynı önceki CSS'inize ekleyin) */
.slider-text {
    padding: 2rem;
    border-radius: 16px;
}

.slider-text h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.slider-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive için ekleyin */
@media (max-width: 992px) {
    .slider-grid {
        grid-template-columns: 1fr;
        /* 1 sütuna düşür */
        gap: 1rem;
    }

    .intro-slider {
        margin: 1% 5%;
        /* kenar boşluklarını daralt */
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .slider-text {
        padding: 1rem;
        text-align: center;
    }

    .slider-text h2 {
        font-size: 1.75rem;
    }

    .slider-text p {
        font-size: .9rem;
    }

    .slider-container {
        height: 250px;
        /* mobilde yükseklik küçült */
    }

    .slider-prev,
    .slider-next-all {
        width: 32px;
        height: 32px;
        /* butonları küçült */
        font-size: 1rem;
    }
}

/* Mobilde metni slider'ın altına almak için */
@media (max-width: 768px) {
    .slider-grid {
        display: flex;
        flex-direction: column;
    }

    .slider-container {
        order: 1;
    }

    .slider-text {
        order: 2;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: rgb(208, 106, 3);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
}

.text-btn {
    background: none;
    color: var(--primary-color);
    padding: 8px 0;
    position: relative;
}

.text-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.text-btn:hover::after {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Header */
header {
    position: sticky;
    /* Sayfada sabit kalsın */
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    /* Yarı saydam beyaz */
    backdrop-filter: blur(10px);
    /* Arkayı buzluyor */
    -webkit-backdrop-filter: blur(10px);
    /* Safari için */
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}



.logo img {
    height: 75px;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Tours Section */
.popular-tours {
    padding: 5rem 0;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    margin-bottom: 0.5rem;
}

.tour-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tour-duration {
    color: var(--text-light);
}

.tour-price {
    color: var(--primary-color);
}

/* Blog Section */
.latest-blog {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Calculator Promo */
.calculator-promo {
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/placeholder.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.calculator-promo-content {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.calculator-promo p {
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Newsletter */
.newsletter {
    padding: 5rem 0;
    background-color: #9dc6fd;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter-message {
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-about p {
    color: #ccc;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
}

.footer-links a:hover {
    color: rgb(247, 203, 153);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icon svg {
    color: white;
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #ccc;
}

/* style.css'in uygun yerine ekleyin */
.page-header {
    /* Arka plan resmi yolu (kendi yolunuza göre düzenleyin) */
    background-image: url('/images/haakimizda-slider.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 500px;
    /* İçeriğin yeterince boşluk alması için üst-alt padding */
    padding: 100px 0;

    /* Üstüne gelecek metnin rengi (isterseniz kaldırabilir ya da değiştirin) */
    color: #fff;
}

/* İçerikteki metni yatay ve dikey ortalamak isterseniz */
.page-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* Başlık boyutunu ihtiyaca göre ayarlayın */
.page-header h1 {
    font-size: 4rem;
    margin: 0;
    /* Gerekirse yazı gölgesi ekleyip okunabilirliği artırabilirsiniz */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* About Page */
.about-intro {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-vision {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-box,
.vision-box {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-box h2,
.vision-box h2 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mission-box h2::after,
.vision-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.team {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--text-light);
}

.history {
    padding: 5rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-year {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: calc(50% - 50px);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Calculator Page */
.calculator {
    padding: 5rem 0;
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-intro h2 {
    margin-bottom: 1rem;
}

.calculator-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.calculator-result {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.calculator-result h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.calculator-result h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.result-details {
    margin-bottom: 2rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pricing-info {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.pricing-card h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.pricing-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background-color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Blog Page */
.blog-list {
    padding: 5rem 0;
}

.blog-filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-categories {
    display: flex;
    gap: 1rem;
}

.filter-category {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-category:hover,
.filter-category.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-search {
    display: flex;
}

.filter-search input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    width: 250px;
}

.filter-search button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.5rem 1rem;
}

.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-item:hover,
.pagination-item.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Blog Detail Page */
.blog-detail {
    padding: 5rem 0;
}

.blog-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
}

.blog-detail-meta svg {
    margin-right: 0.5rem;
}

.blog-detail-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-detail-content {
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2 {
    margin: 2rem 0 1rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
    margin-bottom: 0.5rem;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
}

.blog-author {
    margin-top: 3rem;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 2rem;
}

.blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-content h3 {
    margin-bottom: 0.5rem;
}

.blog-author-content p {
    color: var(--text-light);
}

.blog-comments {
    margin-top: 3rem;
}

.blog-comments h2 {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.blog-comments h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    color: var(--text-light);
}

.comment-content {
    line-height: 1.6;
}

.comment-form {
    margin-top: 3rem;
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comment-form-group {
    margin-bottom: 1.5rem;
}

.comment-form-group.full-width {
    grid-column: span 2;
}

.comment-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.comment-form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Tours Page */
.tours-list {
    padding: 5rem 0;
}

.tours-filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-categories {
    display: flex;
    gap: 1rem;
}

.filter-category {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background-color: white;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-category:hover,
.filter-category.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-search {
    display: flex;
}

.filter-search input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    width: 250px;
}

.filter-search button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.5rem 1rem;
}

/* Tour Detail Page */
.tour-detail {
    padding: 5rem 0;
}

.tour-detail-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.tour-detail-header {
    margin-bottom: 2rem;
}

.tour-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tour-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tour-detail-meta span {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.tour-detail-meta svg {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.tour-detail-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.tour-detail-gallery {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.tour-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.tour-description {
    line-height: 1.8;
}

.tour-description p {
    margin-bottom: 1.5rem;
}

.tour-description h2 {
    margin: 2rem 0 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.tour-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.tour-description ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.tour-description ul li {
    margin-bottom: 0.5rem;
}

.tour-sidebar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.tour-sidebar h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.tour-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.tour-info-list {
    margin-bottom: 2rem;
}

.tour-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.tour-info-item:last-child {
    border-bottom: none;
}

.tour-info-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.tour-booking-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.tour-share {
    margin-top: 2rem;
}

.tour-share h4 {
    margin-bottom: 1rem;
}

.share-icons {
    display: flex;
    gap: 0.5rem;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    border-radius: 50%;
    transition: var(--transition);
}

.share-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Page */
.contact {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-map {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Admin Pages */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
}

.login-form-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 400px;
}

.login-form-wrapper h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form-group {
    margin-bottom: 1rem;
}

.login-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.login-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.login-btn {
    width: 100%;
    margin-top: 1rem;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: #333;
    color: white;
    padding: 2rem 0;
}

.admin-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-logo img {
    height: 40px;
}

.admin-menu {
    margin-bottom: 2rem;
}

.admin-menu-item {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    color: #ccc;
    transition: var(--transition);
}

.admin-menu-item:hover,
.admin-menu-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-menu-icon {
    margin-right: 1rem;
}

.admin-content {
    padding: 2rem;
    background-color: var(--background-light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-title h1 {
    font-size: 1.8rem;
}

.admin-user {
    display: flex;
    align-items: center;
}

.admin-user-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.admin-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-user-name {
    font-weight: 500;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
}

.admin-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.admin-card:nth-child(1) .admin-card-icon {
    background-color: var(--primary-color);
}

.admin-card:nth-child(2) .admin-card-icon {
    background-color: var(--info-color);
}

.admin-card:nth-child(3) .admin-card-icon {
    background-color: var(--warning-color);
}

.admin-card:nth-child(4) .admin-card-icon {
    background-color: var(--error-color);
}

.admin-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.admin-card-content p {
    color: var(--text-light);
}

.admin-table-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-table-title h2 {
    font-size: 1.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-light);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    transition: var(--transition);
}

.admin-action-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* = Tour List Section = */
.tour-list {
    padding: 4rem 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.subtitle {
    color: #FF6F91;
    font-style: italic;
    margin-bottom: .5rem;
}

.title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Kart Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Tek Bir Tur Kartı */
.tour-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tour-card img {
    width: 100%;
    height: auto;
    display: block;
}

.fav-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fff;
    border: none;
    padding: .5rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tour-info {
    padding: 1rem;
    flex-grow: 1;
}

.tour-info h3 {
    margin-bottom: .25rem;
    font-size: 1.2rem;
}

.location {
    font-size: .9rem;
    color: #666;
}

/* Alt Meta Bilgiler */
.tour-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: .85rem;
    color: #333;
    gap: .25rem;
}

.meta-item.price {
    font-weight: bold;
    color: #FF6F91;
}

.arrow-btn {
    background: #FF6F91;
    padding: .5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Explore All Butonu */
.explore-btn-wrap {
    text-align: center;
    margin-top: 2rem;
}

.btn-explore {
    display: inline-block;
    background: #FF6F91;
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background .3s;
    margin-bottom: 5%;
}

.btn-explore:hover {
    background: #f76a05;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tour-meta {
        flex-wrap: wrap;
        gap: .5rem;
    }
}

/* Kartın içinden taşmayı engellemek için overflow zaten var; yoksa ekle */
.tour-card {
    overflow: hidden;
}

/* Görsele hoş bir geçiş efekti ver */
.tour-card img {
    transition: transform 0.4s ease-out;
}

/* Hover'da resmi biraz ölçeklendir */
.tour-card:hover img {
    transform: scale(1.1);
}

/* Arrow butonuna başlangıç dönüş açısı ve geçiş ekle */
.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF6F91;
    padding: .5rem;
    border-radius: .5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;

    /* İşte dönüş ve animasyon */
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* Kart hover'ında arrow'u 90° çevir */
.tour-card:hover .arrow-btn {
    transform: rotate(-0deg);
}

/* === Detay Sayfası Özel ↓ === */
.detail-hero {
    overflow: hidden;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.detail-hero img {
    width: 100%;
    display: block;
    transition: transform .4s ease-out;
}

.detail-hero img:hover {
    transform: scale(1.05);
}

.detail-content {
    animation: slideUp .6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.counter {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1rem 0;
}

.counter label {
    width: 80px;
    font-weight: bold;
}

.counter button {
    width: 2rem;
    height: 2rem;
    border: none;
    background: #FF6F91;
    color: #fff;
    border-radius: .25rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .3s;
}

.counter button:hover {
    background: #e85c7b;
}

.counter span {
    min-width: 2rem;
    text-align: center;
    display: inline-block;
}

.total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF6F91;
    margin-top: 1rem;
}

/* Footer */
footer {
    /* varsa önceki background-xxx tanımlarını kaldırın veya üzerine yazın */
    background: url('/images/ftbg.png') no-repeat center center;
    background-size: cover;
    /* opsiyonel: üstüne yarı saydam katman istiyorsanız: */
    /* position: relative; */
    /* overflow: hidden; */
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-about p,
.footer-links,
.footer-contact p {
    margin: 0;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: #333;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

#slider {
    height: 50vh;
    position: relative;
}

#slider h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
}

/* Tablet ve üzeri küçük telefonlar için */
@media (max-width: 600px) {
    #slider h1 {
        font-size: 2.4rem;
        position: relative;
        text-align: center;
    }
}

/* Küçük telefonlar için daha da küçült */
@media (max-width: 480px) {
    #slider h1 {
        font-size: 2rem;
        position: relative;
        text-align: center;
    }
}



/* Summary Section */
#summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 0;
    gap: 2rem;
}

#summary img {
    flex: 1 1 45%;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 300px;
}

#summary .text {
    flex: 1 1 50%;
}

#summary h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#summary p {
    line-height: 1.6;
}

/* Price Calculator */
#calculator {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

#calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff8a80, #ff4081);
}

#calculator .inputs {
    display: flex;
    gap: 2rem;
}

#calculator .field {
    display: flex;
    flex-direction: column;
}

#calculator .field label {
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: #555;
}

#calculator .field input {
    width: 6rem;
    padding: .75rem;
    border: none;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    text-align: center;
    transition: background .2s, box-shadow .2s;
}

#calculator .field input:focus {
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(255, 64, 129, 0.2);
    outline: none;
}

#calculator .total {
    margin-left: auto;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

/* History Cards */
.history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.history-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform .2s;
}

.history-card:hover {
    transform: translateY(-5px);
}

.history-card h3 {
    margin-bottom: .75rem;
    color: #ed6109;
}

.history-card p {
    font-size: .95rem;
    color: #555;
    line-height: 1.5;
}

/* Details Section */
#details {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

#details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fd904d;
    display: inline-block;
    padding-bottom: .5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

#details .detail-grid {
    display: grid;
    gap: 1.5rem;
    /* Örneğin 3 sütunlu layout */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

#details .detail-item:last-child {
    /* son item tüm sütunları kaplasın */
    /*grid-column: 1 / -1;*/
}


.detail-item .icon {
    font-size: 1.5rem;
    color: #ff4081;
}

.detail-item .content h3 {
    font-size: 1.1rem;
    margin-bottom: .3rem;
}

.detail-item .content p,
.detail-item .content ul {
    font-size: .95rem;
    color: #555;
    line-height: 1.5;
}

.detail-item .content ul {
    list-style: disc inside;
    margin-top: .3rem;
}


@media (max-width:768px) {

    /* Header mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .main-menu.open {
        display: flex;
    }

    /* Collapse sections */
    #summary,
    #calculator {
        flex-direction: column;
        text-align: center;
    }

    #calculator .inputs {
        justify-content: center;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Kalkülator Bölümü ────────────────────────────────── */
#calculator {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 5%;
    position: relative;
}

/* Üstte ince renkli çizgi */
#calculator::before {
    content: '';
    position: absolute;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

/* Input grubu */
#calculator .inputs {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

/* Her bir alan */
#calculator .field {
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Label */
#calculator .field label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

/* Input kutusu */
#calculator .field input {
    width: 8 rem;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s;
}

#calculator .field input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(253, 144, 77, 0.2);
    outline: none;
}

/* Toplam tutar */
#calculator .total {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    min-width: 150px;
}

/* Ödeme butonu */
#calculator button {
    flex: 0 0 auto;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(253, 144, 77, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

#calculator button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 144, 77, 0.4);
}

/* Responsive için */
@media (max-width: 576px) {
    #calculator {
        flex-direction: column;
        text-align: center;
    }

    #calculator .inputs {
        justify-content: center;
    }

    #calculator .total {
        margin-top: 1rem;
        margin-left: 3%;
    }

    #calculator button {
        margin-top: 1rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background-color: #f8f8f8;
        box-shadow: none;
        display: none;
        margin-top: 0;
        padding: 0;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-mobile-toggle {
        display: block;
        padding: 5px;
        cursor: pointer;
    }

    .dropdown-content.show {
        display: block;
    }

    .dropdown-content a {
        padding-left: 30px;
    }
}

/* filter-group'u konumlandırmak için */
.search-filters .filter-group {
    position: relative;
    flex: 1;
}

/* Temel Select Stilleri */
.search-filters select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    /* oka yer bırak */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-color);
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Odaklandığında gölgelendirme */
.search-filters select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(253, 144, 77, 0.2);
}

/* Pseudo-element ile ok ikonu */
.search-filters .filter-group::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.7rem;
    color: var(--text-light);
}

.search-filters select:hover {
    background-color: 0 0 0 3px rgba(253, 144, 77, 0.2);
}

/* style.css'in sonuna ekleyin */
.features.floating-islands .feature-grid {
    /* Masaüstü: 2 sütunlu grid, her satırda 2 kart */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Mobilde: her kart tam genişlikte, alt alta sıralı */
@media (max-width: 768px) {
    .features.floating-islands .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features.floating-islands .feature-card {
        /* Mobilde tam genişlik */
        width: 100%;
        min-width: auto;
    }

    /* (Artık yatay scrollbar'a gerek yok) */
    .features.floating-islands .feature-grid::-webkit-scrollbar {
        display: none;
    }
}

.mission-vision {
    /* 1) Bölümün tamamına arkaplan resmi */
    background: url('/images/mission-bg.jpg') center center / cover no-repeat fixed;
    position: relative;
    /* içeriğin üzerine yerleşmesi için */
    padding: 4rem 0;
    /* istediğiniz iç boşluk */
}

/* 2) Kartların kendi arka planlarını yarı transparan yapalım */
.mission-vision .mission-box,
.mission-vision .vision-box {
    background: rgba(255, 255, 255, 0.8);
    /* veya isterseniz daha koyu: rgba(0,0,0,0.4) */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

/* 3) Section içindeki diğer içeriklerin de üstte kalması için */
.mission-vision .container {
    position: relative;
    z-index: 2;
}

/* Vertical category list styles */
.category-list {
    margin-bottom: 3rem;
}

.category-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.category-icon img {
    width: 30px;
    height: 30px;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.category-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.category-meta {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #888;
}

.category-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.category-meta svg {
    margin-right: 0.25rem;
    width: 14px;
    height: 14px;
}

.category-action {
    margin-left: auto;
    flex-shrink: 0;
}


/* Additional styles for enhanced filtering */
.advanced-filters {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.filter-title svg {
    margin-right: 0.5rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    flex: 1 1 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input {
    width: 16px;
    height: 16px;
}

.filter-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.reset-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-btn:hover {
    background: #f5f5f5;
}

.apply-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-btn:hover {
    background: #e57f3d;
}

/* Vertical category list styles */
.category-list {
    margin-bottom: 3rem;
}

.category-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.category-icon img {
    width: 30px;
    height: 30px;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.category-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.category-meta {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #888;
}

.category-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.category-meta svg {
    margin-right: 0.25rem;
    width: 14px;
    height: 14px;
}

.category-action {
    margin-left: auto;
    flex-shrink: 0;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.view-btn:hover {
    background: #e57f3d;
}

.view-btn svg {
    margin-left: 0.5rem;
    width: 16px;
    height: 16px;
}

/* Tour card enhancements */
.tour-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.25rem;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-date {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* Results summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.results-count {
    font-size: 0.95rem;
    color: #666;
}

.results-sort select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    cursor: pointer;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-icon {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background-color: #f8f8f8;
        box-shadow: none;
        display: none;
        margin-top: 0;
        padding: 0;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-mobile-toggle {
        display: block;
        padding: 5px;
        cursor: pointer;
    }

    .dropdown-content.show {
        display: block;
    }

    .dropdown-content a {
        padding-left: 30px;
    }
}

/* Category Header Styles */
.category-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/yurtici-yatili-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Filter Styles */
.category-filters {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    flex: 1 1 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-btn:hover {
    background: #f5f5f5;
}

.apply-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-btn:hover {
    background: #e57f3d;
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.results-count {
    font-size: 0.95rem;
    color: #666;
}

.results-sort select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    cursor: pointer;
}

/* Tour Card Enhancements */
.tour-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tour-date {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.card-body {
    padding: 1.25rem;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.no-results .btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.no-results .btn:hover {
    background: #e57f3d;
}

    /* ====== TABLET VE AŞAĞISI (≤ 992px) ====== */
    @media (max-width: 992px) {

        /* sayfa başlığı ortala */
        .page-header .container {
            text-align: center;
        }

        .breadcrumb {
            justify-content: center;
        }

        /* about-intro iki sütunu tek sütuna dönüştür */
        .about-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
        }

        /* misyon-vizyon kutularını alt alta yığ */
        .mission-vision-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
        }
    }

    /* ====== KÜÇÜK TABLET VE MOBİL (≤ 768px) ====== */
    @media (max-width: 768px) {

        /* Header: hamburger'ı göster, menüyü gizle */
        .mobile-menu-toggle {
            display: block;
        }

        .main-menu {
            display: none;
            flex-direction: column;
            background: #fff;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .main-menu.open {
            display: flex;
        }

        /* Ekstra üst boşluk: sabit header'a kaçırmamak için */

        /* Values Grid: ikiye düşür */
        .values-grid {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1rem !important;
        }

        /* Team Grid: tek sütun */
        .team-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1rem !important;
        }

        /* Timeline: dikey hizala */
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Testimonials: slider'ı full width yap */
        .testimonial-slider {
            display: block !important;
        }

        .testimonial-dots {
            justify-content: center;
            margin-top: 1rem;
        }

        /* Newsletter form: dikey istif */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: stretch;
        }
    }

    /* ====== MOBİL (≤ 576px) ====== */
    @media (max-width: 576px) {

        /* Program Finder (eğer bu sayfada varsa) */
        .program-finder .finder-pills {
            flex-direction: column !important;
            gap: 1rem !important;
        }

        /* Arkaplan kartları ya da iframe, img tam genişlik */
        img,
        iframe {
            max-width: 100%;
            height: auto;
        }

        /* Hero slider metni küçült */
        #slider h1 {
            font-size: 2rem;
            padding: 1rem;
        }
    }
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.test-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.payment-processing {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}