﻿/* INDEX -- Hero Section (Carousel) */
.index--hero-section {
    position: relative;
    background-color: #000;
}

.index--carousel-item {
    height: 55vh;
    min-height: 400px;
    background-color: #000;
    position: relative;
}

/* Cross-Fade Geçiş Düzeltmesi */
.carousel-fade .carousel-inner {
    background: #000;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1.2s;
    transition-property: opacity;
    z-index: 0;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 1;
}

/* Görselin üzerine karartma katmanı */
.index--carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Biraz daha koyulaştırdık */
    z-index: 1;
}

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

/* Slider Kontrolleri (Oklar ve Noktalar) İyileştirme */
.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    /* En üstte kalsın */
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    /* Arkasına siyah daire */
    border-radius: 50%;
    padding: 2rem;
    /* Alanı genişlet */
    background-size: 50%;
    /* Ok simgesini ortala */
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.carousel-indicators {
    z-index: 10;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.index--carousel-caption {
    /* Tam Ortalamak Yerine Biraz Yukarı */
    top: 35%;
    /* Metni yukarı taşıdık (Search bar ile çakışmasın) */
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.index--hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.index--hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Mobil için Hero Font Ayarı */
@media (max-width: 768px) {
    .index--hero-title {
        font-size: 1.5rem;
    }

    .index--hero-subtitle {
        font-size: 0.85rem;
    }

    .index--carousel-caption {
        top: 15%;
        /* Mobilde daha yukarıda (search bar ile çakışmasın) */
        transform: translateY(0);
        padding: 0 1rem;
    }

    /* Mobilde okları ve noktaları gizle */
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- LIQUID GLASS SEARCH BAR (MINIMAL & PILL TABS) */
/* --------------------------------------------------------- */

.index--search-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    /* Yatayda ortala, dikeyde yarısı dışarıda */
    width: 100%;
    max-width: 1200px;
    z-index: 100;
    padding: 0 1rem;
    top: 35%;
}

/* Popüler Turlar Bölümü */
.index--popular-tours {
    position: relative;
    z-index: 90;
    padding-top: 2rem;
    /* Search bar ile arasında boşluk */
}

/* Tablet için ayarlamalar */
@media (max-width: 992px) {
    .index--hero-section {
        margin-bottom: 7rem !important;
    }

    .index--search-container {
        width: 92%;
    }
}

/* Mobil Search Container */
@media (max-width: 768px) {
    .index--hero-section {
        margin-bottom: 0 !important;
        /* Mobilde alt boşluk yok */
    }

    .index--carousel-item {
        height: 65vh;
        /* Mobilde banner biraz daha uzun */
        min-height: 500px;
    }

    .index--search-container {
        position: absolute;
        bottom: auto;
        top: 18rem;
        /* Banner'ın ortasından başla */
        left: 50%;
        transform: translate(-50%, -50%);
        /* Tam ortala */
        width: 94%;
        padding: 0 0.5rem;
    }

    .index--popular-tours {
        padding-top: 2rem;
    }

    .stories-section {
        position: relative;
        z-index: 100;
        margin-bottom: 0.5rem;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 576px) {
    .index--carousel-item {
        height: 70vh;
        min-height: 550px;
    }

    .index--search-container {
        width: 100%;
        padding: 0 0.25rem;
    }
}

.index--search-card {
    /* LIQUID GLASS EFFECT (Geri Döndük) */
    background: rgba(255, 255, 255, 0.15);
    /* Şeffaf Beyaz */
    backdrop-filter: blur(20px);
    /* Buzlu Cam */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    /* Daha az yuvarlak */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Hafif Gölge */
    padding: 1rem;
    /* İç boşluğu kıstık (Minimal) */
}

/* Header Alanı */
.index--search-card .card-header {
    background: transparent !important;
    border-bottom: none;
    padding: 0 0 1rem 0;
    /* Alt boşluk */
    display: flex;
    justify-content: center;
}

/* Tab Linkleri (Kutucuklar - Glass Uyumlu) */
.index--nav-tabs {
    border-bottom: none;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.index--tab-link {
    color: rgba(255, 255, 255, 0.9);
    /* Beyazımsı yazı */
    font-weight: 500;
    border: none !important;
    outline: none !important;
    /* Tıklama kenarlığını kaldır */
    padding: 0.4rem 0.8rem;
    /* Daha küçük kutular */
    background-color: rgba(255, 255, 255, 0.15);
    /* Yarı saydam kutu */
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px !important;
    transition: all 0.2s ease;
    min-width: 90px;
    /* Genişliği azalttık */
    /* Border kaldırıldı */
}

.index--tab-link:focus,
.index--tab-link:active {
    box-shadow: none !important;
    /* Bootstrap focus shadow'u kaldır */
    outline: none !important;
}

.index--tab-link:hover {
    background-color: #ffffff;
    /* Hoverda TAM BEYAZ */
    color: var(--secondary-color);
    /* Yazı rengi okunsun diye koyu */
    transform: translateY(-1px);
}

/* Aktif Tab - Turuncu/Sıcak Renk (Mavi Yerine) */
.index--tab-link.active {
    color: #fff !important;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    /* Butonla aynı gradient */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1;
    font-weight: 700;
    border: none !important;
}

.index--tab-icon {
    font-size: 0.95rem;
}

/* Mobile Tabs - Scrollable */
@media (max-width: 768px) {
    .index--nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        gap: 0.4rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .index--nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .index--nav-tabs .nav-item {
        flex-shrink: 0;
    }

    .index--tab-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: auto;
        white-space: nowrap;
    }

    .index--tab-icon {
        font-size: 0.8rem;
    }
}

/* Form Alanı */
.index--search-card .card-body {
    padding: 0;
    background: transparent;
}

/* Etiketler (Labels) - Beyaz Yapıldı */
.index--search-card .form-label {
    color: #ffffff;
    /* Artık beyaz */
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    /* Okunabilirlik için gölge */
}

/* Input Alanları - Minimal */
.index--search-card .form-control,
.index--search-card .form-select {
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Hafif çizgi */
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    /* Daha opak beyaz */
    /* Hafif şeffaf input */
    font-size: 0.85rem;
    color: #333;
    box-shadow: none;
    height: 38px;
    /* Yüksekliği azalttık (Minimal 38px) */
}

.index--search-card .input-group {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.index--search-card .input-group-text {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    padding-right: 0;
    height: 36px;
    /* Inputla hizalı (border payı düştü) */
}

.index--search-card .input-group .form-control {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 0.5rem;
    height: 36px;
}

.index--search-card .form-control:focus,
.index--search-card .form-select:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Arama Butonu */
.index--search-card .btn-primary-custom {
    height: 38px;
    /* Inputlarla aynı */
    width: 100%;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.index--search-card .btn-primary-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    filter: brightness(1.1);
}

/* --------------------------------------------------------- */
/* INDEX -- STORIES SECTION (Clean Slider) */
/* --------------------------------------------------------- */

.stories-section {
    background: #ffffff;
    padding: 1rem 0;
}

/* Stories Container */
.stories-container {
    position: relative;
    padding: 0 50px;
}

/* Navigation Buttons */
.stories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stories-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 166, 153, 0.3);
}

.stories-nav-prev {
    left: 5px;
}

.stories-nav-next {
    right: 5px;
}

/* Stories Wrapper */
.stories-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

/* Story Item */
.story-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.story-item:hover {
    transform: translateY(-3px);
}

/* Story Circle - Tek Renk */
.story-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #00a699 0%, #007882 100%);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 12px rgba(0, 166, 153, 0.2);
}

.story-item:hover .story-circle {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(0, 166, 153, 0.3);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background-color: #fff;
}

/* Story Text */
.story-text {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

/* Tablet */
@media (max-width: 992px) {
    .stories-container {
        padding: 0 45px;
    }

    .stories-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .stories-nav-prev {
        left: 3px;
    }

    .stories-nav-next {
        right: 3px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stories-section {
        padding: 0.8rem 0;
    }

    .stories-container {
        padding: 0 40px;
    }

    .stories-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        transform: translateY(-60%);
    }

    .stories-nav-prev {
        left: 5px;
    }

    .stories-nav-next {
        right: 5px;
    }

    .stories-wrapper {
        gap: 1rem;
        padding: 0.3rem 0;
    }

    .story-circle {
        width: 65px;
        height: 65px;
    }

    .story-text {
        font-size: 0.72rem;
        max-width: 70px;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- SECTION HEADER */
/* --------------------------------------------------------- */

.index--section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.index--section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.5px;
}

.index--section-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0.3rem 0 0 0;
}

.index--section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0dcaf0;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    padding: 0.3rem;
    border: 2px solid #0dcaf0;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.index--section-link:hover {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa8c9 100%);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3);
}

.index--section-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.index--section-link:hover i {
    transform: translateX(3px);
}

.index--view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.index--view-all-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.index--view-all-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.index--view-all-btn:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------- */
/* INDEX -- CATEGORIES SLIDER */
/* --------------------------------------------------------- */

.categories-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.categories-slider-wrapper {
    position: relative;
    margin: 0 -0.75rem;
}

.categories-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.75rem;
}

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

.category-item {
    flex-shrink: 0;
}

.category-card {
    display: block;
    position: relative;
    width: 280px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.category-card:hover .category-card--overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

.category-card--content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
    z-index: 2;
    width: 100%;
}

.category-card:hover .category-card--content {
    transform: translate(-50%, -50%) scale(1.05);
}

.category-card--content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.category-card--content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card--content span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Categories Navigation Buttons */
.categories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.categories-nav:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.categories-nav i {
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s ease;
}

.categories-nav:hover i {
    color: #fff;
}

.categories-nav-prev {
    left: 0;
}

.categories-nav-next {
    right: 0;
}

/* Categories - Tablet */
@media (max-width: 992px) {
    .category-card {
        width: 170px;
        height: 220px;
    }

    .category-card--content {
        padding: 1.2rem;
    }

    .category-card--content i {
        font-size: 1.6rem;
    }

    .category-card--content h3 {
        font-size: 1rem;
    }

    .category-card--content span {
        font-size: 0.75rem;
    }
}

/* Categories - Mobile */
@media (max-width: 768px) {
    .categories-section {
        padding: 2rem 0;
    }

    .category-card {
        width: 140px;
        height: 180px;
        border-radius: 12px;
    }

    .category-card--content {
        padding: 1rem;
    }

    .category-card--content i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .category-card--content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .category-card--content span {
        font-size: 0.68rem;
    }

    .categories-nav {
        width: 36px;
        height: 36px;
    }

    .categories-nav i {
        font-size: 1rem;
    }
}

/* Categories - Small Mobile */
@media (max-width: 400px) {
    .category-card {
        width: 120px;
        height: 160px;
    }

    .category-card--content {
        padding: 0.8rem;
    }

    .category-card--content i {
        font-size: 1.1rem;
    }

    .category-card--content h3 {
        font-size: 0.75rem;
    }

    .category-card--content span {
        font-size: 0.6rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .index--section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .index--section-title {
        font-size: 1.4rem;
    }

    .index--view-all-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .index--section-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

.index--rating-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 1rem;
    margin: 1rem;
    border-radius: 50rem;
    font-weight: bold;
}

/* --------------------------------------------------------- */
/* INDEX -- WHY CHOOSE US (Professional Design) */
/* --------------------------------------------------------- */

.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.why-choose-badge i {
    font-size: 0.9rem;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.8rem 0;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.why-choose-card {
    background: #fff;
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-card--icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.why-choose-card--icon i {
    font-size: 1.6rem;
    color: #fff;
}

.why-choose-card--number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.08);
    line-height: 1;
}

.why-choose-card--title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.6rem 0;
}

.why-choose-card--desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.why-choose-card--stats {
    display: flex;
    align-items: center;
}

.why-choose-card--stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0ea5e9;
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
}

.why-choose-card--stats i {
    font-size: 0.8rem;
}

/* Bottom Stats */
.why-choose-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    flex-wrap: wrap;
}

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

.why-choose-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.why-choose-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.why-choose-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(14, 165, 233, 0.15);
}

/* Why Choose - Tablet */
@media (max-width: 992px) {
    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 1.5rem;
    }

    .why-choose-card--icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .why-choose-card--icon i {
        font-size: 1.3rem;
    }

    .why-choose-bottom {
        gap: 1.5rem;
    }

    .why-choose-stat-number {
        font-size: 1.8rem;
    }
}

/* Why Choose - Mobile */
@media (max-width: 768px) {
    .why-choose-header {
        margin-bottom: 2rem;
    }

    .why-choose-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }

    .why-choose-subtitle {
        font-size: 0.9rem;
    }

    .why-choose-card {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .why-choose-card--icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .why-choose-card--icon i {
        font-size: 1.1rem;
    }

    .why-choose-card--number {
        font-size: 1.8rem;
        top: 1rem;
        right: 1rem;
    }

    .why-choose-card--title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .why-choose-card--desc {
        font-size: 0.72rem;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .why-choose-card--stats span {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .why-choose-bottom {
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .why-choose-stat-number {
        font-size: 1.4rem;
    }

    .why-choose-stat-label {
        font-size: 0.7rem;
    }

    .why-choose-stat-divider {
        height: 30px;
    }
}

/* Why Choose - Small Mobile */
@media (max-width: 400px) {
    .why-choose-card--desc {
        display: none;
    }

    .why-choose-stat-divider:nth-child(4) {
        display: none;
    }

    .why-choose-stat-item:nth-child(5) {
        display: none;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- FAQ SECTION (Professional Design) */
/* --------------------------------------------------------- */

.faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-header {
    position: sticky;
    top: 100px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.faq-badge i {
    font-size: 0.9rem;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1e293b;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
}

.faq-contact-btn:hover {
    background: #334155;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
}

.faq-contact-btn i {
    font-size: 1.1rem;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #f59e0b;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fefce8;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.faq-question[aria-expanded="true"] .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* FAQ - Tablet */
@media (max-width: 992px) {
    .faq-header {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-title {
        font-size: 1.8rem;
    }
}

/* FAQ - Mobile */
@media (max-width: 768px) {
    .faq-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-contact-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .faq-accordion {
        gap: 0.8rem;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-question-text {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon i {
        font-size: 0.8rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- BLOG SECTION (Modern Editorial Design) */
/* --------------------------------------------------------- */

.blog-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Blog Card - Wrapper Link */
.blog-card--wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card--wrapper:hover {
    text-decoration: none;
    color: inherit;
}

/* Blog Card - Base */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.blog-card--image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card--image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

/* Category Badge */
.blog-card--category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1e293b;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card--category i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Card Content */
.blog-card--content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Info */
.blog-card--meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.blog-card--meta span {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card--meta i {
    font-size: 0.75rem;
}

/* Title */
.blog-card--title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card--title {
    color: var(--primary-color);
}

/* Excerpt */
.blog-card--excerpt {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link */
.blog-card--link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.blog-card--link:hover {
    gap: 8px;
    color: var(--secondary-color);
}

/* Featured Blog Card */
.blog-card--featured {
    height: 100%;
}

.blog-card--featured .blog-card--image-wrapper {
    height: 280px;
}

.blog-card--featured .blog-card--title {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
}

.blog-card--featured .blog-card--excerpt {
    font-size: 0.95rem;
    -webkit-line-clamp: 3;
}

/* Footer */
.blog-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.blog-card--author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card--author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card--author span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

.blog-card--btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card--btn:hover {
    transform: translateX(4px);
    color: #fff;
}

/* Horizontal Blog Card */
.blog-card--horizontal {
    flex-direction: row;
    height: 140px;
}

.blog-card--horizontal .blog-card--image-wrapper {
    width: 140px;
    height: 100%;
    flex-shrink: 0;
}

.blog-card--horizontal .blog-card--content {
    padding: 1rem;
    justify-content: center;
}

.blog-card--horizontal .blog-card--title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    margin-bottom: 0.3rem;
}

.blog-card--tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.blog-card--horizontal .blog-card--link {
    font-size: 0.75rem;
}

/* Blog - Tablet */
@media (max-width: 992px) {
    .blog-card--featured .blog-card--image-wrapper {
        height: 220px;
    }

    .blog-card--featured .blog-card--title {
        font-size: 1.2rem;
    }

    .blog-card--horizontal {
        height: 120px;
    }

    .blog-card--horizontal .blog-card--image-wrapper {
        width: 120px;
    }
}

/* Blog - Mobile */
@media (max-width: 768px) {
    .blog-card {
        border-radius: 12px;
    }

    .blog-card--image-wrapper {
        height: 160px;
    }

    .blog-card--category {
        padding: 4px 10px;
        font-size: 0.6rem;
        top: 8px;
        left: 8px;
    }

    .blog-card--content {
        padding: 1rem;
    }

    .blog-card--meta {
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .blog-card--meta span {
        font-size: 0.62rem;
    }

    .blog-card--title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .blog-card--excerpt {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .blog-card--link {
        font-size: 0.72rem;
    }

    /* Featured Mobile */
    .blog-card--featured .blog-card--image-wrapper {
        height: 180px;
    }

    .blog-card--featured .blog-card--title {
        font-size: 1rem;
    }

    .blog-card--featured .blog-card--excerpt {
        font-size: 0.8rem;
    }

    .blog-card--footer {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }

    .blog-card--author img {
        width: 28px;
        height: 28px;
    }

    .blog-card--author span {
        font-size: 0.7rem;
    }

    .blog-card--btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* Horizontal Mobile */
    .blog-card--horizontal {
        height: 100px;
    }

    .blog-card--horizontal .blog-card--image-wrapper {
        width: 100px;
    }

    .blog-card--horizontal .blog-card--content {
        padding: 0.8rem;
    }

    .blog-card--horizontal .blog-card--title {
        font-size: 0.75rem;
    }

    .blog-card--tag {
        font-size: 0.55rem;
    }

    .blog-card--horizontal .blog-card--link {
        font-size: 0.65rem;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- NEWSLETTER SECTION (Inline) */
/* --------------------------------------------------------- */

.newsletter-section {
    background: transparent;
}

.newsletter-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.newsletter-inline__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-inline__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-inline__icon i {
    font-size: 1.4rem;
    color: #fff;
}

.newsletter-inline__text {
    flex-shrink: 0;
}

.newsletter-inline__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.2rem 0;
}

.newsletter-inline__subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.newsletter-inline__form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 400px;
}

.newsletter-inline__form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-inline__form input::placeholder {
    color: #94a3b8;
}

.newsletter-inline__form input:focus {
    outline: none;
    border-color: #0ea5e9;
    background: #fff;
}

.newsletter-inline__form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-inline__form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Newsletter - Tablet */
@media (max-width: 992px) {
    .newsletter-inline {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .newsletter-inline__form {
        max-width: none;
        width: 100%;
    }
}

/* Newsletter - Mobile */
@media (max-width: 768px) {
    .newsletter-inline {
        flex-direction: column;
        padding: 1.2rem;
        border-radius: 12px;
        text-align: center;
    }

    .newsletter-inline__left {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-inline__icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .newsletter-inline__icon i {
        font-size: 1.2rem;
    }

    .newsletter-inline__title {
        font-size: 1rem;
    }

    .newsletter-inline__subtitle {
        font-size: 0.75rem;
    }

    .newsletter-inline__form {
        flex-direction: column;
        gap: 0.6rem;
    }

    .newsletter-inline__form input {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .newsletter-inline__form button {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------- */
/* PROMO BADGES (İndirim/Aciliyet) */
/* --------------------------------------------------------- */

.promo-badge {
    position: absolute;
    top: 45px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: promoPulse 2s infinite;
}

@keyframes promoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.promo-badge i {
    font-size: 0.7rem;
}

/* İndirim */
.promo-badge--discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
}

/* Aciliyet */
.promo-badge--urgent {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.4);
}

/* Trend */
.promo-badge--trending {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(6, 182, 212, 0.4);
}

/* En Çok Satan */
.promo-badge--bestseller {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
}

/* Yeni */
.promo-badge--new {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.4);
}

/* Mobile Promo Badge */
@media (max-width: 768px) {
    .promo-badge {
        top: 38px;
        left: 8px;
        padding: 3px 7px;
        font-size: 0.5rem;
        border-radius: 4px;
    }

    .promo-badge i {
        font-size: 0.55rem;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- ACTIVITY CARDS (Energetic Design) */
/* --------------------------------------------------------- */

.activities-section {
    background: linear-gradient(180deg, #fff5f2 0%, #ffffff 100%);
}

/* --------------------------------------------------------- */
/* INDEX -- VILLA CARDS (Nature & Luxury Design) */
/* --------------------------------------------------------- */

.villas-section {
    background: linear-gradient(180deg, #f0f7f4 0%, #ffffff 100%);
}

.villa-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

/* Image Wrapper */
.villa-card--image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.villa-card--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

/* Favorite Button */
.villa-card--favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.villa-card--favorite i {
    font-size: 1.1rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.villa-card--favorite:hover {
    background: #fff;
    transform: scale(1.1);
}

.villa-card--favorite:hover i,
.villa-card--favorite.active i {
    color: #e74c3c;
}

/* Badge */
.villa-card--badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.villa-card--badge i {
    font-size: 0.8rem;
}

.villa-card--badge--forest {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.villa-card--badge--sea {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.villa-card--badge--mountain {
    background: linear-gradient(135deg, #78716c 0%, #57534e 100%);
}

/* Quick Features */
.villa-card--features-quick {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.villa-card--features-quick span {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
}

.villa-card--features-quick i {
    font-size: 0.75rem;
    color: #10b981;
}

.villa-card--pool {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.villa-card--pool i {
    color: #fff !important;
}

/* Card Content */
.villa-card--content {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.villa-card--title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
}

/* Location */
.villa-card--location {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.villa-card--location i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Amenities */
.villa-card--amenities {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.villa-card--amenities span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 8px;
    color: #10b981;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.villa-card:hover .villa-card--amenities span {
    background: #dcfce7;
}

/* Footer */
.villa-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.villa-card--price {
    display: flex;
    flex-direction: column;
}

.villa-card--price-label {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.villa-card--price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1.2;
}

.villa-card--btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.villa-card--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
}

/* Villa Card - Tablet */
@media (max-width: 992px) {
    .villa-card--image-wrapper {
        height: 170px;
    }
}

/* Villa Card - Mobile */
@media (max-width: 768px) {
    .villa-card {
        border-radius: 12px;
    }

    .villa-card--image-wrapper {
        height: 130px;
    }

    .villa-card--favorite {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

    .villa-card--favorite i {
        font-size: 0.8rem;
    }

    .villa-card--badge {
        padding: 3px 8px;
        font-size: 0.55rem;
        top: 8px;
        left: 8px;
    }

    .villa-card--badge i {
        font-size: 0.6rem;
    }

    .villa-card--features-quick {
        bottom: 8px;
        left: 8px;
        gap: 5px;
    }

    .villa-card--features-quick span {
        padding: 3px 6px;
        font-size: 0.58rem;
    }

    .villa-card--features-quick i {
        font-size: 0.6rem;
    }

    .villa-card--content {
        padding: 0.8rem;
    }

    .villa-card--title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .villa-card--location {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .villa-card--location i {
        font-size: 0.68rem;
    }

    .villa-card--amenities {
        gap: 0.35rem;
        margin-bottom: 0.6rem;
    }

    .villa-card--amenities span {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        border-radius: 6px;
    }

    .villa-card--footer {
        padding-top: 0.6rem;
    }

    .villa-card--price-label {
        font-size: 0.55rem;
    }

    .villa-card--price-value {
        font-size: 0.9rem;
    }

    .villa-card--btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Villa Card - Small Mobile */
@media (max-width: 400px) {
    .villa-card--image-wrapper {
        height: 110px;
    }

    .villa-card--features-quick span:not(.villa-card--pool) {
        display: none;
    }

    .villa-card--amenities {
        display: none;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- RENT A CAR CARDS (Professional Design) */
/* --------------------------------------------------------- */

.rentacar-section {
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

/* --------------------------------------------------------- */
/* INDEX -- TRANSFER CARDS (Professional Blue Design) */
/* --------------------------------------------------------- */

.transfer-section {
    background: linear-gradient(180deg, #eef4ff 0%, #f8faff 100%);
}

/* --------------------------------------------------------- */
/* INDEX -- PENSION CARDS (Warm & Cozy Design) */
/* --------------------------------------------------------- */

.pension-section {
    background: linear-gradient(180deg, #fef7ed 0%, #fffbf5 100%);
}

.pension-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(234, 88, 12, 0.06);
}

.pension-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.12);
}

/* Image Wrapper */
.pension-card--image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

/* Favorite */
.pension-card--favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pension-card--favorite i {
    color: #ea580c;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pension-card--favorite:hover {
    background: #ea580c;
}

.pension-card--favorite:hover i {
    color: #fff;
}

/* Badge */
.pension-card--badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pension-card--badge i {
    font-size: 0.8rem;
}

.pension-card--badge--breakfast {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
}

.pension-card--badge--homemade {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    color: #fff;
}

.pension-card--badge--organic {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    color: #fff;
}

.pension-card--badge--seaview {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #fff;
}

/* Rating */
.pension-card--rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ea580c;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pension-card--rating i {
    color: #f59e0b;
    font-size: 0.7rem;
}

/* Card Content */
.pension-card--content {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.pension-card--title {
    font-size: 1rem;
    font-weight: 700;
    color: #78350f;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Location */
.pension-card--location {
    font-size: 0.75rem;
    color: #92400e;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pension-card--location i {
    color: #ea580c;
}

/* Features */
.pension-card--features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.pension-card--features span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #92400e;
}

.pension-card--features i {
    color: #ea580c;
    font-size: 0.75rem;
}

/* Footer */
.pension-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #fde68a;
}

.pension-card--price {
    display: flex;
    flex-direction: column;
}

.pension-card--price-label {
    font-size: 0.68rem;
    color: #a16207;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pension-card--price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c;
    line-height: 1.2;
}

.pension-card--btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.pension-card--btn:hover {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    color: #fff;
}

/* Pension Card - Tablet */
@media (max-width: 992px) {
    .pension-card--image-wrapper {
        height: 160px;
    }
}

/* Pension Card - Mobile */
@media (max-width: 768px) {
    .pension-card {
        border-radius: 12px;
    }

    .pension-card--image-wrapper {
        height: 120px;
    }

    .pension-card--favorite {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

    .pension-card--favorite i {
        font-size: 0.8rem;
    }

    .pension-card--badge {
        padding: 3px 8px;
        font-size: 0.55rem;
        top: 8px;
        left: 8px;
    }

    .pension-card--badge i {
        font-size: 0.6rem;
    }

    .pension-card--rating {
        padding: 3px 7px;
        font-size: 0.6rem;
        bottom: 8px;
        left: 8px;
    }

    .pension-card--content {
        padding: 0.8rem;
    }

    .pension-card--title {
        font-size: 0.85rem;
    }

    .pension-card--location {
        font-size: 0.62rem;
        margin-bottom: 0.5rem;
    }

    .pension-card--features {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .pension-card--features span {
        padding: 3px 6px;
        font-size: 0.58rem;
        border-radius: 4px;
    }

    .pension-card--features i {
        font-size: 0.6rem;
    }

    .pension-card--footer {
        padding-top: 0.6rem;
    }

    .pension-card--price-label {
        font-size: 0.55rem;
    }

    .pension-card--price-value {
        font-size: 0.9rem;
    }

    .pension-card--btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Pension Card - Small Mobile */
@media (max-width: 400px) {
    .pension-card--image-wrapper {
        height: 100px;
    }

    .pension-card--features {
        display: none;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- BUNGALOW CARDS (Nature Design) */
/* --------------------------------------------------------- */

.bungalow-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
}

.bungalow-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(34, 197, 94, 0.08);
}

.bungalow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

/* Image Wrapper */
.bungalow-card--image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

/* Favorite */
.bungalow-card--favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bungalow-card--favorite i {
    color: #166534;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bungalow-card--favorite:hover {
    background: #166534;
}

.bungalow-card--favorite:hover i {
    color: #fff;
}

/* Badge */
.bungalow-card--badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bungalow-card--badge i {
    font-size: 0.8rem;
}

.bungalow-card--badge--forest {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    color: #fff;
}

.bungalow-card--badge--lake {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    color: #fff;
}

.bungalow-card--badge--mountain {
    background: linear-gradient(135deg, #57534e 0%, #78716c 100%);
    color: #fff;
}

.bungalow-card--badge--glamping {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
    color: #fff;
}

/* Rating */
.bungalow-card--rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bungalow-card--rating i {
    color: #22c55e;
    font-size: 0.7rem;
}

/* Card Content */
.bungalow-card--content {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.bungalow-card--title {
    font-size: 1rem;
    font-weight: 700;
    color: #14532d;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Location */
.bungalow-card--location {
    font-size: 0.75rem;
    color: #166534;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bungalow-card--location i {
    color: #22c55e;
}

/* Features */
.bungalow-card--features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.bungalow-card--features span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #166534;
}

.bungalow-card--features i {
    color: #22c55e;
    font-size: 0.75rem;
}

/* Footer */
.bungalow-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #dcfce7;
}

.bungalow-card--price {
    display: flex;
    flex-direction: column;
}

.bungalow-card--price-label {
    font-size: 0.68rem;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bungalow-card--price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #166534;
    line-height: 1.2;
}

.bungalow-card--btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.bungalow-card--btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: #fff;
}

/* Bungalow Card - Tablet */
@media (max-width: 992px) {
    .bungalow-card--image-wrapper {
        height: 160px;
    }
}

/* Bungalow Card - Mobile */
@media (max-width: 768px) {
    .bungalow-card {
        border-radius: 12px;
    }

    .bungalow-card--image-wrapper {
        height: 120px;
    }

    .bungalow-card--favorite {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

    .bungalow-card--favorite i {
        font-size: 0.8rem;
    }

    .bungalow-card--badge {
        padding: 3px 8px;
        font-size: 0.55rem;
        top: 8px;
        left: 8px;
    }

    .bungalow-card--badge i {
        font-size: 0.6rem;
    }

    .bungalow-card--rating {
        padding: 3px 7px;
        font-size: 0.6rem;
        bottom: 8px;
        left: 8px;
    }

    .bungalow-card--content {
        padding: 0.8rem;
    }

    .bungalow-card--title {
        font-size: 0.85rem;
    }

    .bungalow-card--location {
        font-size: 0.62rem;
        margin-bottom: 0.5rem;
    }

    .bungalow-card--features {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .bungalow-card--features span {
        padding: 3px 6px;
        font-size: 0.58rem;
        border-radius: 4px;
    }

    .bungalow-card--features i {
        font-size: 0.6rem;
    }

    .bungalow-card--footer {
        padding-top: 0.6rem;
    }

    .bungalow-card--price-label {
        font-size: 0.55rem;
    }

    .bungalow-card--price-value {
        font-size: 0.9rem;
    }

    .bungalow-card--btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Bungalow Card - Small Mobile */
@media (max-width: 400px) {
    .bungalow-card--image-wrapper {
        height: 100px;
    }

    .bungalow-card--features {
        display: none;
    }
}

.car-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image Wrapper */
.car-card--image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Badge */
.car-card--badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-card--badge i {
    font-size: 0.8rem;
}

.car-card--badge--economy {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.car-card--badge--suv {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
}

.car-card--badge--luxury {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.car-card--badge--van {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #fff;
}

/* KM Badge */
.car-card--km {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #1a1a2e;
    z-index: 3;
}

/* Card Content */
.car-card--content {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category */
.car-card--category {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

/* Title */
.car-card--title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

/* Subtitle */
.car-card--subtitle {
    font-size: 0.72rem;
    color: #999;
    margin: 0.2rem 0 0.8rem 0;
    font-style: italic;
}

/* Specs */
.car-card--specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.car-card--specs span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #495057;
}

.car-card--specs i {
    color: #1a1a2e;
    font-size: 0.8rem;
}

/* Footer */
.car-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.car-card--price {
    display: flex;
    flex-direction: column;
}

.car-card--price-label {
    font-size: 0.68rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-card--price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.car-card--btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.car-card--btn:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
    color: #fff;
}

/* Car Card - Tablet */
@media (max-width: 992px) {
    .car-card--image-wrapper {
        height: 160px;
    }
}

/* Car Card - Mobile */
@media (max-width: 768px) {
    .car-card {
        border-radius: 12px;
    }

    .car-card--image-wrapper {
        height: 120px;
    }

    .car-card--badge {
        padding: 3px 8px;
        font-size: 0.55rem;
        top: 8px;
        left: 8px;
    }

    .car-card--badge i {
        font-size: 0.6rem;
    }

    .car-card--km {
        padding: 3px 7px;
        font-size: 0.55rem;
        top: 8px;
        right: 8px;
    }

    .car-card--content {
        padding: 0.8rem;
    }

    .car-card--category {
        font-size: 0.58rem;
        margin-bottom: 0.2rem;
    }

    .car-card--title {
        font-size: 0.9rem;
    }

    .car-card--subtitle {
        font-size: 0.6rem;
        margin-bottom: 0.5rem;
    }

    .car-card--specs {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }

    .car-card--specs span {
        padding: 3px 6px;
        font-size: 0.58rem;
        border-radius: 4px;
    }

    .car-card--specs i {
        font-size: 0.65rem;
    }

    .car-card--footer {
        padding-top: 0.6rem;
    }

    .car-card--price-label {
        font-size: 0.55rem;
    }

    .car-card--price-value {
        font-size: 0.9rem;
    }

    .car-card--btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Car Card - Small Mobile */
@media (max-width: 400px) {
    .car-card--image-wrapper {
        height: 100px;
    }

    .car-card--specs {
        display: none;
    }

    .car-card--subtitle {
        margin-bottom: 0.3rem;
    }
}

/* --------------------------------------------------------- */
/* INDEX -- HOTEL CARDS (Luxury Design) */
/* --------------------------------------------------------- */

.hotels-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hotel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
}

/* Image Wrapper */
.hotel-card--image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-card--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hotel-card--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0) 50%);
    pointer-events: none;
}

/* Favorite Button */
.hotel-card--favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hotel-card--favorite i {
    font-size: 1.1rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.hotel-card--favorite:hover {
    background: #fff;
    transform: scale(1.1);
}

.hotel-card--favorite:hover i,
.hotel-card--favorite.active i {
    color: #e74c3c;
}

/* Score Badge */
.hotel-card--score {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.3);
}

/* Concept Badge */
.hotel-card--concept {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    z-index: 2;
}

/* Card Content */
.hotel-card--content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Stars */
.hotel-card--stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.hotel-card--stars i {
    font-size: 0.85rem;
    color: #c9a227;
}

/* Title */
.hotel-card--title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Location */
.hotel-card--location {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-card--location i {
    color: #3498db;
    font-size: 0.9rem;
}

/* Amenities */
.hotel-card--amenities {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hotel-card--amenities span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hotel-card:hover .hotel-card--amenities span {
    background: #e8f4fc;
    color: #3498db;
}

/* Footer */
.hotel-card--footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.hotel-card--price {
    display: flex;
    flex-direction: column;
}

.hotel-card--price-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-card--price-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.hotel-card--btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.25);
}

.hotel-card--btn:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.35);
    color: #fff;
}

/* Hotel Card - Tablet */
@media (max-width: 992px) {
    .hotel-card--image-wrapper {
        height: 180px;
    }
}

/* Hotel Card - Mobile */
@media (max-width: 768px) {
    .hotel-card {
        border-radius: 12px;
    }

    .hotel-card--image-wrapper {
        height: 130px;
    }

    .hotel-card--favorite {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }

    .hotel-card--favorite i {
        font-size: 0.8rem;
    }

    .hotel-card--score {
        padding: 4px 8px;
        font-size: 0.75rem;
        top: 8px;
        left: 8px;
        border-radius: 6px;
    }

    .hotel-card--concept {
        padding: 3px 8px;
        font-size: 0.55rem;
        bottom: 8px;
        left: 8px;
    }

    .hotel-card--content {
        padding: 0.8rem;
    }

    .hotel-card--stars i {
        font-size: 0.7rem;
    }

    .hotel-card--title {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .hotel-card--location {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .hotel-card--location i {
        font-size: 0.75rem;
    }

    .hotel-card--amenities {
        gap: 0.4rem;
        margin-bottom: 0.7rem;
    }

    .hotel-card--amenities span {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .hotel-card--footer {
        padding-top: 0.7rem;
    }

    .hotel-card--price-label {
        font-size: 0.58rem;
    }

    .hotel-card--price-value {
        font-size: 0.95rem;
    }

    .hotel-card--btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.68rem;
    }
}

/* Hotel Card - Small Mobile */
@media (max-width: 400px) {
    .hotel-card--image-wrapper {
        height: 110px;
    }

    .hotel-card--amenities {
        display: none;
    }

    .hotel-card--location {
        margin-bottom: 0.3rem;
    }
}

/* Card Slider stilleri artık card-slider.css dosyasında */
/* Her kartın hover stilleri kendi CSS dosyasında tanımlı */

/* --------------------------------------------------------- */
/* INDEX -- CONTACT SECTION (Modern Design) */
/* --------------------------------------------------------- */

.contact-section {
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 166, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 166, 153, 0.3);
}

.contact-badge i {
    font-size: 0.9rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.8rem 0;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Card */
.contact-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-card-body {
    padding: 2.5rem;
}

/* Contact Info Side */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.contact-info-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.2rem;
}

.contact-info-content span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.contact-info-content p,
.contact-info-content a {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
    opacity: 0.85;
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    padding-left: 1.5rem;
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #1e293b;
    color: #1e293b;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 166, 153, 0.1);
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
}

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

.contact-form .input-icon-wrapper {
    position: relative;
}

.contact-form .input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-form .input-icon-wrapper .form-control {
    padding-left: 2.8rem;
}

.contact-form .input-icon-wrapper:focus-within i {
    color: var(--primary-color);
}

.contact-form-btn {
    width: fit-content;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 153, 0.3);
}

.contact-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 153, 0.4);
}

.contact-form-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-form-btn:hover i {
    transform: translateX(4px);
}

/* Contact - Tablet */
@media (max-width: 992px) {
    .contact-card-body {
        padding: 2rem;
    }

    .contact-info-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding-left: 0;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* Contact - Mobile */
@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .contact-card-body {
        padding: 1.25rem;
    }

    .contact-info-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-info-title {
        font-size: 1.2rem;
    }

    .contact-info-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .contact-info-icon i {
        font-size: 1rem;
    }

    .contact-info-content span {
        font-size: 0.72rem;
    }

    .contact-info-content p,
    .contact-info-content a {
        font-size: 0.9rem;
    }

    .contact-info-list li {
        margin-bottom: 1rem;
    }

    .contact-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .contact-form-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .form-label {
        font-size: 0.8rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .contact-form .input-icon-wrapper .form-control {
        padding-left: 2.5rem;
    }

    .contact-form textarea.form-control {
        min-height: 100px;
    }

    .contact-form-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}