/* General */
.custom-text-primary {
    color: #4A2E13;
}

.custom-bg-primary {
    background: #4A2E13;
}

.title-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 25px;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #D3C5BC;
    opacity: 1;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #79563C;
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5em;
    color: #000;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

/* Masaüstünde daha az belirgin yap */
@media (min-width: 992px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2em;
        color: #333;
    }
}


/* ======= Header ====== */
#main-header {
    position: relative;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#main-header a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* ======= Top Bar ====== */
#main-header .top-bar {
    background-color: #79563C;
    height: 40px;
    font-size: 0.95rem;
}


/* ======= Navbar (Desktop) ====== */
#main-header .main-navbar {
    background-color: #fff;
}

#main-header .navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

#main-header .navbar-nav .nav-link:hover,
#main-header .navbar-nav .nav-link.active {
    color: #72904A;
}

#main-header .dropdown-toggle-plus::after {
    content: '+';
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 0.35rem;
    color: #555;
    line-height: 1;
}

#main-header .dropdown-toggle::after {
    display: none;
}

#main-header .dropdown-toggle-plus::after {
    display: inline-block;
}

/* ======= Desktop Search ====== */
#main-header .desktop-search-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#main-header .desktop-search-area .search-text-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem;
}

#main-header .desktop-search-area .search-text-link:hover {
    color: #72904A;
}

#main-header .desktop-search-area .search-icon-btn {
    background-color: #f7941d;
    color: white;
    height: 35px;
    width: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

#main-header .desktop-search-area .search-icon-btn:hover {
    background-color: #e68a1a;
    transform: scale(1.05);
}

/* === Mobil Görünüm Ayarları === */
#main-header .navbar-toggler {
    border: none;
    padding: 0;
    width: 50px;
    height: 40px;
    background-color: #79563C;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#main-header .navbar-toggler:focus {
    box-shadow: none;
}

#main-header .navbar-toggler .toggler-icon {
    display: block;
    width: 60%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

#main-header .dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

#main-header .dropdown-item {
    font-size: 15px;
    font-weight: 400;
    padding: 8px 12px;
    color: #333;
    border-radius: 6px;
    transition: color 0.3s ease, background-color 0.3s ease, font-weight 0.3s ease;
}

#main-header .dropdown-item:hover {
    color: #72904A;
    background-color: rgba(114, 144, 74, 0.08);
    font-weight: 500;
}

#main-header .dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(114, 144, 74, 0.12);
    color: #72904A;
    font-weight: 600;
}

/* === Mobil Off-Canvas Menü === */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

#mobile-menu-overlay.open {
    transform: translateX(0);
}

#mobile-menu-overlay .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

#mobile-menu-overlay .menu-header .logo {
    max-height: 25px;
}

#mobile-menu-overlay .menu-header .close-btn {
    width: 50px;
    height: 40px;
    background-color: #79563C;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.5rem;
    line-height: 1;
}

#mobile-menu-overlay .menu-nav {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}

#mobile-menu-overlay .menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu-overlay .menu-nav>ul>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

#mobile-menu-overlay .menu-nav .submenu-toggle {
    font-size: 1.5rem;
}

#mobile-menu-overlay .menu-nav .active-link {
    color: #8dc63f;
}

#mobile-menu-overlay .menu-nav .sub-menu {
    list-style: none;
    padding-left: 1rem;
    display: none;
}

#mobile-menu-overlay .menu-nav .sub-menu li a {
    display: block;
    padding: 0.6rem 0;
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

#mobile-menu-overlay .menu-footer {
    padding: 1.5rem;
    margin-top: auto;
}

#mobile-menu-overlay .mobile-search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7941d;
    color: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
}

#mobile-menu-close-btn i {
    font-size: 20px;
}

/* Language Select Modal */
#languageModal .modal-header {
    border-bottom: 1px solid #dee2e6;
}

#languageModal .list-group-item {
    font-weight: 500;
    border-left: 0;
    border-right: 0;
}

#languageModal .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#languageModal .list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#languageModal .list-group-item.active {
    background-color: #8dc63f;
    border-color: #8dc63f;
}

#languageModal .lang-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Search Modal */
#searchModal .modern-modal {
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

#searchModal .modern-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

#searchModal .modern-search-input {
    display: flex;
    gap: 5px;
}

#searchModal .modern-search-input input {
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    flex: 1;
    transition: all 0.3s;
}

#searchModal .modern-search-input input:focus {
    border-color: #f7941d;
    box-shadow: 0 0 8px #f7941d;
    outline: none;
}

/* Buton */
#searchModal .modern-search-input .btn {
    border-radius: 50px;
    background-color: #f7941d;
    border: none;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

#searchModal .modern-search-input .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px #f7941d;
}

/* ======== HERO ======== */
.hero-section {
    padding: 0.7rem 0;
}

.hero-container {
    min-height: 700px;
    position: relative;
    border-radius: 30px;
    padding: 4rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.30);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.hero-swiper-container {
    width: 100%;
    min-height: 70px;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.filter-box {
    margin-top: 2rem;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Zaman Çizgisi */
.timeline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.timeline .progress {
    width: 0%;
    height: 100%;
    background: #79563C;
}

.tabs-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.filter-tabs .nav-link {
    color: #fff;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
}

.filter-tabs .nav-link.active {
    background-color: #79563C;
    color: #fff;
    font-weight: 600;
}


/* Swiper Pagination */
.hero-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 10px 0;
    text-align: center;
    z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .hero-container {
        padding: 6rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .tabs-wrapper {
        overflow-x: auto;
    }
}


.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.filter-box {
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.tabs-wrapper {
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.filter-tabs {
    border-bottom: none;
    margin-bottom: 0 !important;
    flex-wrap: nowrap;
}

.filter-tabs .nav-link {
    font-size: 14px;
    color: #fff;
    background-color: #79563C;
    font-weight: 500;
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-tabs .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.filter-tabs .nav-link.active {
    background-color: #fff;
    color: #333;
    font-weight: 600;
}

.tab-content {
    background: #fff;
    /* replaced var(--text-light) */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
}

.filter-form {
    padding: 1.5rem;
}

.filter-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.25rem;
}

.filter-form .form-control,
.filter-form .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.filter-form .form-control:focus,
.filter-form .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(114, 144, 74, 0.25);
    border-color: #72904A;
}

.filter-form .btn-bul {
    background-color: #72904A;
    color: #fff;
    border: none;
    height: 100%;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
}

.filter-form .btn-bul:hover {
    background-color: #5e773c;
}

/* ======== RESPONSIVE DÜZENLEMELER ======== */
@media (max-width: 991.98px) {
    .hero-container {
        padding: 6rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .tabs-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .tabs-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

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

    .row.g-3.align-items-end .col-lg-3 {
        margin-top: 1rem;
    }

    .filter-form .btn-bul {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .filter-box {
        padding: 1rem;
    }

    .filter-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow: visible !important;
    }

    .filter-tabs .nav-link {
        text-align: center;
        font-size: 13px;
        white-space: normal !important;
        border-radius: 0 !important;
    }

    .filter-tabs .nav-item:last-child {
        margin-bottom: 10px;
        grid-column: 1 / -1 !important;
    }

    .filter-tabs .nav-item {
        flex-shrink: 1 !important;
    }

    .filter-form .row.g-3.align-items-center>[class*='col-'] {
        margin-top: 0.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ========= Footer ======== */
.footer-custom {
    background-color: #4e443a;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-custom .logo-font {
    font-family: 'Votre-Police-Personnalisee', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.footer-custom .footer-links h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-custom .footer-links ul {
    padding-left: 0;
    list-style: none;
}

.footer-custom .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-custom .footer-links a:hover {
    color: #ffffff;
}

.footer-custom .footer-bottom hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-custom .social-icons a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease-in-out;
}

.footer-custom .social-icons a:hover {
    color: #ffffff;
}

/* ======== Featured & General Card ======== */
#featured .featured-cards-left {
    height: 400px;
}

#featured .featured-cards-right {
    height: 500px;
}

#featured .card-img {
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

#featured .card:hover .card-img {
    transform: scale(1.3);
}

#featured .card-img-overlay>.text-white {
    background: rgba(235, 235, 235, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

#featured .cta-bar {
    background-color: #72904A;
}

#featured .btn-discover {
    width: 230px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #5a4b41;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

#featured .btn-discover:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: #5a4b41;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1) !important;
}

#featured .mobile-featured-slider {
    width: 100%;
    height: 350px;
    padding-left: 10px;
    padding-right: 10px;
}

#featured .mobile-featured-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inspect-button {
    background: #FF863A !important;
    cursor: pointer;
    color: #fff;
    padding: 1em;
}

.featured-card:hover .meta-area,
.featured-card:hover .location-badge {
    display: none !important;
}

.featured-card:hover .inspect-button {
    display: inline-block !important;
    animation: fadeInUp 0.3s ease forwards;
}

@media (max-width: 991.98px) {

    #featured .featured-cards-left,
    #featured .featured-cards-right {
        height: auto;
    }

    #featured .featured-cards-left .card {
        height: 250px;
    }

    #featured .featured-cards-right .card {
        height: 300px;
    }
}

/* ======== BLOG ======== */
.blog-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09) !important;
}

.blog-card .card-img-top {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

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

.blog-card .card-title {
    color: #343a40;
    font-weight: 600;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .card-blog-content {
    margin: 0px !important;
    min-height: calc(1.5em * 3);
    line-height: 1.5;
}

.blog-card .card-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.blog-card .location-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-card .read-more-link {
    color: #4A2E13;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card:hover .read-more-link {
    color: #000;
}

/* ======== SHOP-CTA ======== */
.shop-cta-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/others/alisveris.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-green {
    background-color: #8EB16D;
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta-green:hover {
    background-color: #7a9a5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .shop-cta-banner {
        background-attachment: scroll;
        padding: 1.5rem !important;
        min-height: 400px;
    }

    .shop-cta-banner h2 {
        font-size: 2.25rem;
    }

    .shop-cta-banner p.lead {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-cta-green {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* ======== AKYAKA GUIDE ======== */
#akyaka-guide .blog-list-column {
    display: flex;
    flex-direction: column;
}

#akyaka-guide .blog-list-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

#akyaka-guide .blog-list-item:last-child {
    margin-bottom: 16px;
}

#akyaka-guide .blog-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#akyaka-guide .blog-list-item-img {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    object-fit: cover;
    flex-shrink: 0;
}

#akyaka-guide .blog-list-item .content {
    margin-left: 1.25rem;
}

#akyaka-guide .blog-list-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

#akyaka-guide .blog-list-item .blog-date {
    font-size: 0.85rem;
    color: #9ba89f;
    margin-bottom: 0.25rem;
    display: block;
}

#akyaka-guide .blog-list-item .blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
}

/* === SAĞ SÜTUN (GRID) === */
.blog-grid-card-wrapper {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
}

.blog-grid-card {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 1.25rem;
    transition: all 0.5s ease;
}

.blog-grid-card-wrapper:hover .blog-grid-card {
    transform: scale(1.1);
}

.blog-grid-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
    transition: opacity 0.4s ease;
}

.blog-grid-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.blog-grid-card h5 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.blog-grid-card .blog-date {
    color: #e4e4e4;
    font-size: 0.85rem;
}

.blog-grid-card .blog-read-more {
    font-size: 0.9rem;
}

/* === CTA BUTON === */
#akyaka-guide .btn-cta-green {
    background-color: #8EB16D;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    transition: all 0.3s ease;
}

#akyaka-guide .btn-cta-green:hover {
    background-color: #769857;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(118, 152, 87, 0.3);
}


@media (min-width: 992px) {
    #akyaka-guide .blog-list-column {
        justify-content: space-between;
    }

}

@media (max-width: 767.98px) {
    #akyaka-guide .blog-grid-card-wrapper {
        padding-top: 75%;
        height: auto;
    }
}

/* ============ CAR RENTAL CTA ============= */
.car-rental-section {
    position: relative;
    padding-top: 3em;
    padding-bottom: 3em;
}

/* =========== CARAVAN CTA ================ */
#caravan .bg-custom-brown {
    background: linear-gradient(135deg, #6d5f4c 0%, #4a3f30 100%);
}

#caravan .display-5.fw-bolder {
    font-weight: 900 !important;
    letter-spacing: -1.2px;
}

#caravan .btn-scale {
    transition: transform 0.2s ease-in-out;
}

#caravan .btn-scale:hover {
    transform: scale(1.05);
}

#caravan .btn-cream {
    background-color: #f5f0e1;
    color: #4a3f30;
    border: none;
    font-weight: 500;
}

#caravan .btn-cream:hover {
    background-color: #e9e2d4;
    color: #4a3f30;
}

/* Arka Plan Banner */
.rental-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    overflow: hidden;
    padding: 7rem 2rem;
}

.rental-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.rental-hero-content {
    position: relative;
    z-index: 2;
}

.rental-search-wrapper {
    margin-top: -3.5rem;
    position: relative;
    z-index: 3;
}

.rental-search-box {
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rental-field-col {
    padding: 1rem 1.25rem;
    position: relative;
}

@media (min-width: 992px) {
    .rental-field-col:not(:last-of-type) {
        border-right: 1px solid #eee;
    }
}

.rental-field-col label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rental-field-col label i {
    color: #8eb16d;
    font-size: 0.9rem;
}

.rental-field-col .form-control,
.rental-field-col .form-select {
    border: none;
    outline: none;
    box-shadow: none !important;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b3d2e;
    width: 100%;
    background-color: transparent;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
    line-height: 1.5;
}

.rental-field-col .form-control[readonly] {
    background-color: #fff;
    cursor: pointer;
}

.rental-field-col .bootstrap-select>.btn.dropdown-toggle {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b3d2e !important;
    background-color: transparent !important;
    text-align: left;
    line-height: 1.5;
}

.rental-field-col .bootstrap-select .filter-option-inner-inner {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #2b3d2e;
}

.rental-field-col .bootstrap-select .btn.dropdown-toggle[title] .filter-option-inner-inner {
    color: #999;
    font-weight: 500;
}

.rental-field-col .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}

.rental-field-col input[type="text"]::placeholder {
    color: #999;
    font-weight: 500;
}

.rental-field-double {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rental-field-double>div {
    flex: 1;
    min-width: 0;
}

.btn-rental-search {
    background-color: #8eb16d;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-rental-search:hover {
    background-color: #769857;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(142, 177, 109, 0.4);
}

@media (max-width: 991.98px) {
    .rental-search-box {
        border-radius: 2rem;
        padding: 1rem !important;
    }

    .rental-field-col {
        border-bottom: 1px solid #eee;
    }

    .rental-search-box .row>div:last-child .rental-field-col,
    .rental-search-box .row>div:last-child {
        border-bottom: none;
    }

    .btn-rental-search {
        margin-top: 1rem;
    }

    .rental-field-double {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .rental-field-double>div:first-child {
        margin-bottom: 0.75rem;
    }
}

/* ======== FOOD CTA ======== */
#food-cta .bg-warm-brown {
    background: linear-gradient(135deg, #795548 0%, #5D4037 100%);
}

#food-cta .display-5.fw-bolder {
    font-weight: 900 !important;
    letter-spacing: -1.5px;
    color: #ffffff;
}

#food-cta .lead {
    color: rgba(255, 255, 255, 0.9);
}

#food-cta .btn-light-custom {
    background-color: #ffffff;
    color: #5D4037;
    border: none;
    font-weight: 700;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#food-cta .btn-light-custom:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #f7f5f2;
    color: #412f27;
}

#food-cta .img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* ======== NEWSLETTER ====== */
.newsletter-wrapper {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: url('../images/others/newsletter.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 40px;
}

.newsletter-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(11, 40, 62, 0.7);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

#newsletter h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

#newsletter p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
    line-height: 1.6;
}

#newsletter .subscribe-form {
    display: flex;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 8px;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

/* intl-tel-input stilleri */
#newsletter .iti {
    width: 100%;
}

#newsletter #subscribe {
    background: transparent;
    border: none;
    color: white;
    height: 50px;
    padding-left: 35px;
    font-size: 16px;
    width: 100%;
}

#newsletter #subscribe:focus {
    outline: none;
    box-shadow: none;
}

#newsletter #subscribe::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Telefon Kodu Alanı */
#newsletter .iti--allow-dropdown .iti__flag-container {
    background-color: #e6c898;
    border-radius: 12px;
    margin-right: 10px;
    cursor: pointer;
}

#newsletter .iti__selected-dial-code {
    color: #fff;
    font-weight: 600;
}

#newsletter .subscribe-btn {
    background-color: #9fb95b;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    height: 50px;
}

#newsletter .subscribe-btn:hover {
    background-color: #8cac4a;
}

#newsletter .subscribe-btn .arrow {
    margin-left: 8px;
}

#newsletter #twofactor_modal .modal-content {
    border-radius: 12px;
}

#twofactor_modal .modal-header,
#twofactor_modal .modal-footer {
    border: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    #newsletter .newsletter-wrapper {
        padding: 40px 20px;
    }

    #newsletter .newsletter-content h2 {
        font-size: 28px;
    }

    #newsletter .newsletter-content p {
        font-size: 14px;
    }

    #newsletter .subscribe-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        border: none;
        padding: 0;
    }

    #newsletter .iti--allow-dropdown .iti__flag-container {
        background-color: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #newsletter .subscribe-btn {
        width: 100%;
        padding: 15px;
    }

    #newsletter #subscribe {
        background-color: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
    }
}

/* ======== Whatsapp ======== */
.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width:992px) {
    .top-bar {
        height: auto !important;
    }
}

@media (max-width: 576px) {
    #searchModal .modal-dialog {
        margin: 1rem;
    }
}

/* Language Wrapper Mobile */
.language-wrapper {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0d6efd;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.language-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


/* ======== Discovery Page ====== */
.discovery-page {
    min-height: 502px;
    padding: 0 1rem;
}

.filter-list .nav-link.active,
.filter-list-submenu a.active {
    color: #4f321d;
    font-weight: 600;
}

.sort-dropdown .dropdown-item.active {
    color: #6c9c57;
    background-color: #f0f7ec;
}

@media (min-width: 992px) {
    .discovery-page {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
}

.sidebar-filter {
    padding-top: 1rem;
}

.search-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.search-wrapper .form-control {
    border-radius: 50px;
    padding-left: 2.75rem;
    height: 48px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.search-wrapper .form-control:focus {
    border-color: #f77f2c;
    box-shadow: 0 0 0 0.25rem rgba(247, 127, 44, 0.2);
}

.search-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.1rem;
}

.filter-title {
    color: #6c9c57;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.filter-list {
    padding-left: 0;
    list-style: none;
}

.btn-close {
    box-shadow: none !important;
    font-size: 9px;
}

.filter-list .nav-link {
    padding: 0.3rem 0;
    color: #555;
    text-decoration: none;
}

.filter-list .nav-link[data-bs-toggle="collapse"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-list .nav-link[data-bs-toggle="collapse"]::after {
    display: none;
}

.filter-list .nav-link[data-bs-toggle="collapse"] .chevron-icon {
    transition: transform 0.2s ease-in-out;
    font-size: 0.8rem;
}

.filter-list .nav-link[data-bs-toggle="collapse"]:not(.collapsed) .chevron-icon {
    transform: rotate(90deg);
}

.filter-list-submenu {
    list-style: none;
    padding-left: 1rem;
}

.filter-list-submenu a {
    color: #777;
    font-size: 0.95rem;
    text-decoration: none;
}

.mobile-top-bar {
    padding: 1rem 0;
}

.mobile-filter-bar {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.mobile-filter-btn,
.mobile-sort-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    color: #333;
}

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

.result-summary {
    margin: 0;
    color: #777;
}

.sort-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    color: #333;
}

.sort-dropdown .dropdown-toggle::after {
    display: none;
}

.sort-dropdown .dropdown-menu {
    border-radius: 12px;
    border-color: #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
}

.sort-dropdown .dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.active-filters-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.pill-label {
    color: #727272;
    font-weight: 600;
}

.pill-value {
    color: #111111;
    font-weight: 600;
}

.clear-all-btn {
    background-color: #f0f0f0;
    border: none;
    color: #555;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.event-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 1.5rem;
}

.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem 1.2rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.pagination-custom {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.pagination-custom .page-link {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    color: #555;
    font-weight: 600;
    background-color: #fff;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-custom .page-item.active .page-link {
    background-color: #f77f2c;
    border-color: #f77f2c;
    color: #fff;
}

.mobile-filter-modal .modal-content {
    height: 100vh;
}

.mobile-filter-modal .modal-footer {
    display: flex;
    gap: 0.75rem;
}

.mobile-filter-modal .modal-footer .btn {
    flex: 1;
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-apply {
    background-color: #f77f2c;
    border-color: #f77f2c;
    color: #fff;
}

.btn-clear-modal {
    background-color: #868e96;
    border-color: #868e96;
    color: #fff;
}

/* ======== Service & Detail Page ======== */
.service-detail-page {
    background-color: #fff;
    color: #333;
}

.service-detail-page .gallery-slider-main .slick-slide img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
}

.service-detail-page .gallery-slider-main {
    position: relative;
}

.service-detail-page .gallery-slider-main .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 0;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-detail-page .gallery-slider-main .slick-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.service-detail-page .gallery-slider-main .slick-prev {
    left: 15px;
}

.service-detail-page .gallery-slider-main .slick-next {
    right: 15px;
}

.service-detail-page .gallery-slider-main .slick-arrow:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
}

.service-detail-page .gallery-slider-main .slick-prev:before {
    content: '\f053';
}

.service-detail-page .gallery-slider-main .slick-next:before {
    content: '\f054';
}

.service-detail-page .gallery-slider-nav {
    margin-top: 15px;
}

.service-detail-page .gallery-slider-nav .slick-slide {
    padding: 0 5px;
    cursor: pointer;
}

.service-detail-page .gallery-slider-nav .slick-slide img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-page .gallery-slider-nav .slick-slide.slick-current img {
    opacity: 1;
    border-color: #fd7e14;
}

.service-detail-page .service-details-info {
    padding-left: 25px;
}

@media (max-width: 991px) {
    .service-detail-page .service-details-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Başlık Rengi */
.service-detail-page .service-details-info h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #293042;
}

/* Modern Fiyat Tasarımı */
.service-detail-page .service-price {
    margin-bottom: 25px;
}

/* Tekli Fiyat */
.service-detail-page .single-price-display .price-value {
    font-size: 2em;
    font-weight: 700;
    color: #293042;
}

/* Çoklu Fiyat Listesi */
.service-detail-page .price-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-page .price-option-item {
    flex: 1;
    min-width: 120px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail-page .price-option-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.service-detail-page .price-option-item .price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #5a6275;
    margin-bottom: 5px;
}

.service-detail-page .price-option-item .price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #293042;
}

.service-detail-page .service-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-detail-page .service-meta li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-detail-page .service-meta li i {
    font-size: 1.1rem;
    color: #fd7e14;
    margin-right: 10px;
    width: 24px;
    text-align: center;
}

.service-detail-page .service-meta li span,
.service-detail-page .service-meta li a {
    font-weight: 500;
    color: #293042;
    text-decoration: none;
}

.service-detail-page .service-meta li a:hover {
    color: #fd7e14;
}

.service-detail-page .service-short-desc,
.service-detail-page .service-short-desc p,
.service-detail-page .service-short-desc h3,
.service-detail-page .service-short-desc h4,
.service-detail-page .service-short-desc li {

    margin: 0;
    color: #293042 !important;
    line-height: 1.7;
}

.service-detail-page .service-short-desc {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Bilet Satın Al Butonu */
.service-detail-page .btn-buy-ticket {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #fd7e14;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.service-detail-page .btn-buy-ticket:hover {
    background-color: #e66a00;
    color: white;
}

.service-detail-page .btn-buy-ticket.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.8;
}

.service-detail-page .service-map-section {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.service-detail-page .service-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
}

.service-detail-page .fancybox__caption {
    font-size: 20px;
}

/* Guide Card */
.guide-card-wrapper {
    margin-bottom: 1.5rem;
}

.guide-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    background-size: cover;
    background-position: center center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    transition: opacity 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.guide-card:hover .guide-card-read-more {
    transform: translateX(5px);
}

.guide-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.guide-card-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-card-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.guide-card-read-more {
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Breadcrumb */
.breadcrumb-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    width: 100%;
    margin: 20px;
    margin-left: 0px;
    margin-right: 0px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li+li::before {
    content: '/';
    padding: 0 0.6em;
    color: #adb5bd;
    font-weight: 300;
}

.breadcrumb-list a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
    color: #000;
    text-decoration: underline;
}

.breadcrumb-list li.active {
    color: #79563C;
    font-weight: bold;
}

/* ==== ÇOK YAKINDA === */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 2rem 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.coming-soon-icon {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.coming-soon-main-text {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.coming-soon-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    color: #333;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #8B4513;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.coming-soon-button:hover {
    background-color: #7a3d11;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

@media (max-width: 768px) {
    .coming-soon-icon {
        font-size: 4rem;
    }

    .coming-soon-main-text {
        font-size: 2.2rem;
    }

    .coming-soon-subtitle {
        font-size: 1.5rem;
    }

    .coming-soon-description {
        font-size: 1rem;
    }
}

/* 404 Error Page */
.error-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 40px 20px;
    text-align: center;
    margin: 2rem 0;
}

.error-page-content {
    max-width: 600px;
    width: 100%;
}

.error-gif {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0;
}

.error-code {
    font-size: 7rem;
    font-weight: 900;
    color: #8B4513;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.error-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #8B4513;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.error-button:hover {
    background-color: #7a3d11;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.error-path {
    font-size: 0.85rem;
    color: #999;
    margin-top: 2rem;
    word-break: break-all;
}

.error-path span {
    font-family: "Courier New", Courier, monospace;
    color: #777;
    background: #f4f4f4;
    padding: 2px 5px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .error-gif {
        max-height: 200px;
    }

    .error-code {
        font-size: 5rem;
    }

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

    .error-description {
        font-size: 1rem;
    }
}

/* Request Form */
.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 2px;
    width: 2px;
    height: calc(100% - 20px);
    border-left: 2px dashed rgba(74, 46, 19, 0.15);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-point {
    position: absolute;
    left: -30px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 0 4px white;
}

.timeline-point.start-point {
    background-color: #4A2E13;
}

.timeline-point.end-point {
    background-color: #4A2E13;
}

.timeline-point i {
    font-size: 0.8rem;
    color: white;
}