/**
 * Bungalov Sitesi - Custom CSS
 * Karadeniz temasına uygun Bootstrap özelleştirmeleri
 */

/* ===== KARADENİZ RENK PALETİ ===== */
:root {
    --primary-color: #2E5A27;
    /* Koyu yeşil */
    --secondary-color: #4A7C59;
    /* Orta yeşil */
    --accent-color: #6B8E23;
    /* Açık yeşil */
    --blue-color: #1E3A8A;
    /* Koyu mavi */
    --light-blue: #3B82F6;
    /* Orta mavi */
    --brown-color: #8B7355;
    /* Kahverengi */
    --light-brown: #A0522D;
    /* Açık kahverengi */
    --white-color: #F8FAFC;
    /* Beyaz */
    --gray-color: #64748B;
    /* Gri */
    --dark-color: #1F2937;
    /* Koyu gri */
    --success-color: #10B981;
    /* Yeşil */
    --warning-color: #F59E0B;
    /* Turuncu */
    --danger-color: #EF4444;
    /* Kırmızı */
    --info-color: #3B82F6;
    /* Mavi */
}

/* ===== GENEL STİLLER ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

/* Bootstrap renk özelleştirmeleri */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

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

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

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* ===== HEADER STİLLERİ ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.75rem 0;
    background: transparent !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1001;
    /* Hero section'ın üstünde kalması için */
    position: relative;
}

/* Saydam navbar durumunda border */
.navbar:not(.scrolled) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: var(--primary-color) !important;
}

/* Saydam navbar durumunda brand rengi */
.navbar:not(.scrolled) .navbar-brand {
    color: var(--white-color) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar:not(.scrolled) .navbar-brand span {
    color: var(--white-color) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-collapse {
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.navbar-nav {
    margin: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 600px;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    color: var(--dark-color) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
}

/* Saydam navbar durumunda link renkleri */
.navbar:not(.scrolled) .navbar-nav .nav-link {
    color: var(--white-color) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobilde menü açıldığında saydam navbar'da link renkleri */
@media (max-width: 991px) {
    .navbar:not(.scrolled) .navbar-collapse.show .navbar-nav .nav-link {
        color: var(--dark-color) !important;
        text-shadow: none;
    }

    .navbar:not(.scrolled) .navbar-collapse.show .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
        background-color: rgba(46, 90, 39, 0.08);
        text-shadow: none;
    }

    .navbar:not(.scrolled) .navbar-collapse.show .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
        background-color: rgba(46, 90, 39, 0.12);
        text-shadow: none;
    }
}

.navbar:not(.scrolled) .navbar-nav .nav-link:hover {
    color: var(--white-color) !important;
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar:not(.scrolled) .navbar-nav .nav-link.active {
    color: var(--white-color) !important;
    background-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(46, 90, 39, 0.08);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(46, 90, 39, 0.12);
    font-weight: 700;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Duyuru renk varyantları */
.announcement-bar.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.announcement-bar.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.announcement-bar.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color), #D97706);
}

.announcement-bar.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color), #DC2626);
}

.announcement-bar.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #2563EB);
}

.announcement-bar.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--gray-color), #475569);
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInLeft 0.5s ease-out;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.announcement-text {
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 1rem;
}

.announcement-close-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}



.announcement-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Navbar'ı duyuru gizlendiğinde üste sabitle */
.announcement-bar.hidden+.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: slideDown 0.3s ease-out;
}

/* Navbar fixed olduğunda body'ye padding ekle */
body.navbar-fixed {
    padding-top: 80px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* ===== BUNGALOV CAROUSEL ===== */
.bungalov-carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bungalov-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#bungalovCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    padding: 3rem 2rem;
    background: white;
    min-height: 500px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    opacity: 0;
}

.carousel-item.active {
    transform: translateX(0);
    opacity: 1;
}

.carousel-item.carousel-item-next {
    transform: translateX(100%);
    opacity: 0;
}

.carousel-item.carousel-item-prev {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-item.carousel-item-start {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-item.carousel-item-end {
    transform: translateX(100%);
    opacity: 0;
}

.bungalov-carousel-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bungalov-carousel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bungalov-carousel-image:hover img {
    transform: scale(1.05);
}

/* Bungalov Thumbnails */
.bungalov-thumbnails {
    margin-top: 1rem;
}

.bungalov-thumbnails .thumbnail-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bungalov-thumbnails .thumbnail-item:hover {
    transform: scale(1.05);
}

.bungalov-thumbnails .thumbnail-item img {
    transition: all 0.3s ease;
}

.bungalov-thumbnails .thumbnail-item img:hover {
    transform: scale(1.1);
}

.bungalov-carousel-content {
    padding: 2rem;
}

.bungalov-carousel-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bungalov-carousel-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-color);
}

.bungalov-features {
    background: rgba(46, 90, 39, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(46, 90, 39, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.feature-item i {
    font-size: 1.2rem;
    width: 25px;
}

.bungalov-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bungalov-actions {
    margin-top: 2rem;
}

.bungalov-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bungalov-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(46, 90, 39, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(46, 90, 39, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button:hover {
    background-color: white;
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicators button.active {
    background-color: white;
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.social-links a {
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: rgba(46, 90, 39, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(46, 90, 39, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Saydam navbar durumunda toggle buton rengi */
.navbar:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-size: cover;
    background-position: center top;
    /* Arka plan resminin üstten başlaması için */
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    z-index: 1;
    margin-top: -100px;
    /* Navbar'ın altına gelecek şekilde */
    padding-top: 100px;
    /* İçeriğin navbar'ın altında başlaması için */
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    /* Navbar'ın üstünde görünmesi için */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.navbar .btn-primary {
    white-space: nowrap;
    margin-left: 1rem;
}

/* ===== BUNGALOV CARDS ===== */
.bungalov-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.bungalov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bungalov-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bungalov-card:hover .card-img-top {
    transform: scale(1.05);
}

.bungalov-card .card-body {
    padding: 1.5rem;
}

.bungalov-card .card-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bungalov-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.bungalov-card .features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bungalov-card .features li {
    padding: 0.25rem 0;
    color: var(--gray-color);
}

.bungalov-card .features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: var(--white-color);
    padding: 5rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gallery-placeholder {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 90, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-overlay .overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay .overlay-content h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay .overlay-content p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* ===== LIGHTBOX STİLLERİ ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        right: 10px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    margin-top: auto;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating .badge {
    font-size: 10px;
    padding: 2px 6px;
}

/* Google Reviews Loading Styles */
#google-reviews-container .spinner-border {
    width: 3rem;
    height: 3rem;
}

#google-reviews-container .alert {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

#google-reviews-container .alert-info {
    background: rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.3);
}

#google-reviews-container .alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Reviews Carousel Styles */
.reviews-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.reviews-carousel {
    position: relative;
    width: 100%;
}

.reviews-slide {
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s ease-in-out;
}

.reviews-slide:first-child {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.reviews-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews-carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.reviews-carousel-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.reviews-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.reviews-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-carousel-container {
        padding: 0 40px;
    }

    .reviews-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reviews-carousel-indicators {
        margin-top: 20px;
    }

    .reviews-indicator {
        width: 10px;
        height: 10px;
    }

    /* Mobilde tek yorum gösterimi için */
    .testimonial-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .reviews-slide .row {
        justify-content: center;
    }

    .reviews-slide .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 90, 39, 0.25);
}

/* ===== FOOTER STİLLERİ ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d3748 50%, var(--primary-color) 100%);
    border-top: 1px solid rgba(46, 90, 39, 0.2);
}

.footer h5,
.footer h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer Brand */
.footer-brand h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Social Links */
.footer .social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(46, 90, 39, 0.2);
    color: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    border: 1px solid rgba(46, 90, 39, 0.3);
}

.footer .social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 90, 39, 0.4);
    border-color: var(--primary-color);
}

/* Footer Links */
.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Footer Services */
.footer-services {
    margin: 0;
    padding: 0;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.footer-services li i {
    color: var(--success-color);
}

/* Contact Info */
.contact-item {
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 0.875rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(46, 90, 39, 0.15) 0%, rgba(74, 124, 89, 0.15) 100%);
    border-top: 1px solid rgba(46, 90, 39, 0.2);
    border-bottom: 1px solid rgba(46, 90, 39, 0.2);
}

.newsletter-section .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.newsletter-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 90, 39, 0.15);
    background: #fff;
}

.newsletter-section .btn {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(46, 90, 39, 0.2);
    border-top: 1px solid rgba(46, 90, 39, 0.3);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-legal-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Text Light 50 */
.text-light-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }

    .newsletter-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-section .form-control,
    .newsletter-section .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer h5 {
        font-size: 1.1rem;
    }

    .footer h6 {
        font-size: 0.9rem;
    }

    .footer-link,
    .footer-services li,
    .contact-item span {
        font-size: 0.8rem;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STİLLER ===== */
@media (max-width: 768px) {
    .hero-section {
        margin-top: -80px;
        /* Mobilde navbar daha küçük */
        padding-top: 80px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .navbar {
        padding: 0.1rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .navbar-collapse {
        margin-top: 1rem;
        justify-content: center;
        margin: 0 auto;
    }

    .navbar-nav {
        text-align: center;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
        max-width: none;
        justify-content: center;
    }

    /* Mobilde menü açıldığında navbar'ın arka planı */
    .navbar .navbar-collapse.show {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .navbar-nav .nav-link:hover {
        transform: none;
        background-color: rgba(46, 90, 39, 0.1);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        padding: 0.4rem 0.6rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .announcement-bar {
        font-size: 0.8rem;
    }

    .announcement-content {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .announcement-close-btn {
        position: static;
        transform: none;
        margin-top: 0.5rem;
    }

    .announcement-text {
        font-size: 0.8rem;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }



    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn i {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: -70px;
        /* Çok küçük ekranlarda navbar daha da küçük */
        padding-top: 70px;
        min-height: 60vh;
    }

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

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .bungalov-card .card-body {
        padding: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .announcement-text {
        font-size: 0.75rem;
    }

    .announcement-content {
        flex-direction: column;
        gap: 0.25rem;
    }

    .announcement-close-btn {
        position: static;
        transform: none;
        margin-top: 0.25rem;
    }

    /* Bungalov Carousel Small Mobile */
    .bungalov-carousel-content h3 {
        font-size: 1.5rem;
    }

    .bungalov-carousel-image img {
        height: 200px;
    }

    .bungalov-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    /* Bungalov Carousel Mobile */
    .carousel-item {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .bungalov-carousel-content {
        padding: 1rem 0;
        text-align: center;
    }

    .bungalov-carousel-content h3 {
        font-size: 2rem;
    }

    .bungalov-carousel-image img {
        height: 250px;
    }

    .bungalov-features {
        padding: 1rem;
    }

    .feature-item {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .bungalov-price {
        padding: 0.75rem 1.5rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .bungalov-actions .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    .carousel-indicators {
        bottom: -40px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background-color: var(--white-color);
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.why-choose-icon i {
    color: white !important;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: url('../images/cta.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}



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

.cta-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== COUNTER ANIMATION ===== */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.stat-number.animated {
    animation: countUp 0.8s ease-out;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== PRINT STYLES ===== */
@media print {

    .header,
    .footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        width: 100%;
    }
}

/* ===== 360° VIRTUAL TOUR STYLES ===== */
.virtual-tour-viewer {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.viewer-container {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navigation-controls {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-btn.active,
.bungalov-btn.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

.custom-hotspot {
    background: rgba(46, 90, 39, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navigation-hotspot {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navigation-hotspot:hover {
    background: rgba(59, 130, 246, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vr-experience-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.vr-feature {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vr-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.instructions-card {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.instructions-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(46, 90, 39, 0.1);
}

.instruction-item {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.instruction-item:hover i {
    color: white !important;
}

/* Gallery Enhanced Styles */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 90, 39, 0.8), rgba(74, 124, 89, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.overlay-content {
    text-align: center;
    color: white;
}

.virtual-tour-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.virtual-tour-demo {
    height: 100%;
}

.virtual-tour-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.modal-image {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .virtual-tour-viewer {
        position: static;
        margin-bottom: 2rem;
    }

    .viewer-container #pannellum-container {
        height: 300px;
    }

    .filter-buttons .btn {
        margin-bottom: 0.5rem;
    }

    .virtual-tour-card,
    .virtual-tour-demo {
        margin-bottom: 2rem;
    }
}

/* Blog Styles */
.blog-post {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post h2,
.blog-post h3,
.blog-post h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-post blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.blog-post ul,
.blog-post ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
}

/* Rating stars */
.rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.rating-input {
    display: none;
}

.rating-star {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s;
}

.rating-star:hover,
.rating-star:hover~.rating-star,
.rating-input:checked~.rating-star {
    color: #ffc107;
}

/* Avatar styles */
.avatar-sm {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
}

.avatar-lg {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6c757d;
}

/* Blog card hover effects */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Comment styles */
.comment-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.comment-item:last-child {
    border-left: none;
}

/* Social share buttons */
.social-share .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
    transition: transform 0.2s ease;
}

.social-share .btn:hover {
    transform: scale(1.1);
}

/* Blog search and filters */
.blog-filters {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.blog-filters .form-control,
.blog-filters .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.blog-filters .form-control:focus,
.blog-filters .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 90, 39, 0.25);
}

/* Blog pagination */
.blog-pagination .page-link {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 2px solid #e9ecef;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.blog-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Blog sidebar */
.blog-sidebar .card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.blog-sidebar .card:hover {
    transform: translateY(-2px);
}

.blog-sidebar .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

/* Similar posts */
.similar-post {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.similar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Newsletter form */
.newsletter-form .form-control {
    border-radius: 25px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
}

/* Blog meta info */
.blog-meta {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.blog-meta .d-flex {
    gap: 1rem;
}

/* Blog tags */
.blog-tags .badge {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-tags .badge:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Blog stats */
.blog-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.blog-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    flex: 1;
}

.blog-stats .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.blog-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive blog styles */
@media (max-width: 768px) {
    .blog-post {
        font-size: 1rem;
    }

    .blog-meta .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-share {
        text-align: center;
        margin-top: 1rem;
    }

    .blog-stats {
        flex-direction: column;
    }

    .blog-filters .row>div {
        margin-bottom: 1rem;
    }
}

/* Blog search results */
.search-results {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.search-results .search-term {
    color: var(--primary-color);
    font-weight: bold;
}

/* Blog categories */
.blog-categories {
    list-style: none;
    padding: 0;
}

.blog-categories li {
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
}

.blog-categories li:last-child {
    border-bottom: none;
}

.blog-categories a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-categories a:hover {
    color: var(--primary-color);
}

.blog-categories .badge {
    background: var(--primary-color);
    color: white;
}

/* Blog featured posts */
.featured-posts {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.featured-posts h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.featured-posts .card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    backdrop-filter: blur(10px);
}

.featured-posts .card-body {
    color: white;
}

.featured-posts .card-title a {
    color: white;
    text-decoration: none;
}

.featured-posts .card-title a:hover {
    text-decoration: underline;
}

/* Blog comment form */
.comment-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.comment-form .form-control,
.comment-form .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.comment-form .form-control:focus,
.comment-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 90, 39, 0.25);
}

/* Blog author info */
.author-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.author-info .avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

/* Blog related posts */
.related-posts {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.related-posts h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-posts .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-posts .card:hover {
    transform: translateY(-5px);
}

/* Blog share buttons */
.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.share-buttons .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.share-buttons .btn:hover {
    transform: scale(1.1);
}

.share-buttons .btn-facebook {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-buttons .btn-twitter {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-buttons .btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.share-buttons .btn-linkedin {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

/* Blog reading time */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.reading-time i {
    color: var(--primary-color);
}

/* Blog table of contents */
.table-of-contents {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

/* Blog print styles */
@media print {

    .blog-sidebar,
    .social-share,
    .comment-form,
    .related-posts {
        display: none !important;
    }

    .blog-post {
        font-size: 12pt;
        line-height: 1.6;
    }

    .blog-post img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* E-ticaret stilleri */

/* Sepet stilleri */
.cart-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem;
}

.cart-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cart-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Ödeme formu stilleri */
.payment-method {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.payment-method:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.payment-method input[type="radio"]:checked+label {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-method input[type="radio"]:checked~.payment-method {
    border-color: var(--primary-color);
    background-color: #e7f1ff;
}

.payment-form {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Kupon stilleri */
.coupon-suggestions .coupon-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.coupon-suggestions .coupon-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coupon-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

/* Fiyat detayları */
.price-breakdown {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
}

/* Teşekkür sayfası */
.success-icon {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sosyal paylaşım butonları */
.social-sharing .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.social-sharing .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Sepet widget */
.cart-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    min-width: 250px;
}

.cart-widget .cart-item {
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
}

.cart-widget .cart-item:last-child {
    border-bottom: none;
}

/* Responsive e-ticaret */
@media (max-width: 768px) {
    .payment-method {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .cart-item .row>div {
        margin-bottom: 1rem;
    }

    .cart-item .col-md-3 {
        text-align: center;
    }

    .cart-widget {
        position: static;
        transform: none;
        margin: 1rem 0;
    }
}

/* Loading animasyonu */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Sepet boş durumu */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

/* Ödeme güvenliği */
.payment-security {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
}

.payment-security i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Sipariş durumu badge'leri */
.order-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.order-status.beklemede {
    background-color: #fff3cd;
    color: #856404;
}

.order-status.onaylandi {
    background-color: #d1edff;
    color: #0c5460;
}

.order-status.iptal {
    background-color: #f8d7da;
    color: #721c24;
}

.order-status.tamamlandi {
    background-color: #d4edda;
    color: #155724;
}

/* Fatura stilleri */
.invoice-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
}

.invoice-body {
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    text-align: left;
}

.invoice-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Kupon kodu input */
.coupon-input {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Sepet özeti */
.cart-summary {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.cart-summary .total-row {
    border-top: 2px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mobil sepet */
.mobile-cart-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-cart-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-cart-toggle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}