/* Custom CSS for Seda Onur Güner Website */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Footer için body ayarları */
/* Body ayarları aşağıda tanımlanmış */

/* Custom Color Variables */
:root {
    /* Ana Renk Paleti - Varsayılan Gri Tema */
    --primary-color: #525252;
    /* Ana renk */
    --primary-dark: #414141;
    /* Koyu ton */
    --primary-darker: #313131;
    /* Daha koyu ton */
    --primary-light: #9FA7AD;
    /* Açık ton */
    --primary-lighter: #B5BCC2;
    /* Daha açık ton */
    --primary-lightest: #CBD1D6;
    /* En açık ton */

    /* İkincil Renkler */
    --secondary-color: #F5F4F2;
    /* Çok açık gri-beyaz */
    --secondary-light: #F9F8F6;
    /* Daha açık */
    --secondary-dark: #E8E6E3;
    /* Biraz koyu */

    /* Vurgu Renkleri */
    --accent-color: #9FA7AD;
    /* Orta ton vurgu */
    --accent-light: #B5BCC2;
    /* Açık vurgu */
    --accent-dark: #7A8288;
    /* Koyu vurgu */

    /* Modern UI Enhancement Colors */
    --gradient-primary: linear-gradient(135deg, #525252 0%, #414141 100%);
    --gradient-secondary: linear-gradient(135deg, #F5F4F2 0%, #E8E6E3 100%);
    --gradient-accent: linear-gradient(135deg, #9FA7AD 0%, #7A8288 100%);
    --gradient-light: linear-gradient(135deg, #F9F8F6 0%, #F5F4F2 100%);

    /* Gölge Renkleri */
    --shadow-soft: 0 4px 20px rgba(82, 82, 82, 0.08);
    --shadow-medium: 0 8px 30px rgba(82, 82, 82, 0.12);
    --shadow-strong: 0 12px 40px rgba(82, 82, 82, 0.15);
}

/* Renkli Tema - Pastel Renkler */
[data-theme="colorful"] {
    /* Ana Renk Paleti - Pastel Tema */
    --primary-color: #A8A2D8;
    /* Pastel mor */
    --primary-dark: #8B7FD1;
    /* Koyu pastel mor */
    --primary-darker: #6B5F9F;
    /* Daha koyu pastel mor */
    --primary-light: #C7C2E8;
    /* Açık pastel mor */
    --primary-lighter: #D6D2ED;
    /* Daha açık pastel mor */
    --primary-lightest: #E5E2F2;
    /* En açık pastel mor */

    /* İkincil Renkler */
    --secondary-color: #F8F9FF;
    /* Çok açık pastel mavi-beyaz */
    --secondary-light: #FCFCFF;
    /* Daha açık */
    --secondary-dark: #E8E9FF;
    /* Biraz koyu pastel mavi */

    /* Vurgu Renkleri */
    --accent-color: #7DD3C0;
    /* Pastel teal */
    --accent-light: #A8E6D9;
    /* Açık pastel teal */
    --accent-dark: #5BA89A;
    /* Koyu pastel teal */

    /* Modern UI Enhancement Colors */
    --gradient-primary: linear-gradient(135deg, #A8A2D8 0%, #8B7FD1 100%);
    --gradient-secondary: linear-gradient(135deg, #F8F9FF 0%, #E8E9FF 100%);
    --gradient-accent: linear-gradient(135deg, #7DD3C0 0%, #5BA89A 100%);
    --gradient-light: linear-gradient(135deg, #FCFCFF 0%, #F8F9FF 100%);

    /* Gölge Renkleri */
    --shadow-soft: 0 4px 20px rgba(168, 162, 216, 0.08);
    --shadow-medium: 0 8px 30px rgba(168, 162, 216, 0.12);
    --shadow-strong: 0 12px 40px rgba(168, 162, 216, 0.15);
    --shadow-accent: 0 6px 25px rgba(159, 167, 173, 0.2);

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Modern E-commerce Card Styling */
.modern-card {
    background: var(--gradient-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.modern-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa; /* Nötr arka plan: tüm oranlarda güzel görünür */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Oranı koruyarak tam görüntüle */
    object-position: center;
    transition: transform 0.3s ease;
}

.modern-card:hover .card-image {
    transform: none;
}

.card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Dinamik kategori renkleri devre dışı - tek tip rozet */
.card-badge[data-color] { background: var(--gradient-primary) !important; }

.card-content {
    padding: 16px;
}

.card-favorite {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.card-favorite i {
    color: #ff4757;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 4px 0;
    font-weight: 500;
}

.card-publisher {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.card-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0072ff;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-action-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.card-action-btn i {
    font-size: 1rem;
}

/* Neo Glass Card - Cruosal ve Kitaplık kartları için modern görünüm */
.neo-card {
    position: relative;
    background: rgba(12, 18, 28, 0.6);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Dotted grid efekti */
.neo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.6;
    pointer-events: none;
}

/* Dış parlama çizgisi */
.neo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(98, 150, 255, 0.55), rgba(64, 224, 208, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Kart içerikleri okunaklı olsun */
.neo-card .book-info,
.neo-card .movie-info,
.neo-card .blog-info {
    background: transparent;
    color: #e9eef6;
}

.neo-card h3,
.neo-card h4,
.neo-card h5,
.neo-card p,
.neo-card span {
    color: #e9eef6;
}

.neo-card .badge {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.neo-card .book-overlay,
.neo-card .movie-overlay,
.neo-card .blog-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.55) 100%);
}

/* Global Styles */
html,
body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tinos', serif;
    color: var(--primary-darker);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--secondary-light);
}

/* Main content area - grows to fill available space */
main,
.main-content {
    flex: 1;
}

/* Hakkımızda Sayfası Fotoğraf Düzenlemesi */
.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 0 !important;
    /* Grid'in en üstünde başlasın */
    align-self: flex-start !important;
    /* Flex container'da üstte hizala */
}

/* Hakkımızda sayfası için özel düzenleme */
.py-section .row.align-items-center {
    align-items: flex-start !important;
    /* Tüm elemanları üstte hizala */
}

.py-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Modern Button Styles */
.btn-custom {
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Modern Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    overflow: hidden;
    background-color: var(--secondary-light);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
}

/* Hero Background */
.hero-bg {
    background-image: url('https://readdy.ai/api/search-image?query=serene%20therapy%20office%20interior%20with%20soft%20natural%20lighting%20comfortable%20seating%20area%20plants%20and%20calming%20atmosphere%20modern%20professional%20psychology%20consultation%20room%20with%20warm%20tones%20and%20peaceful%20ambiance&width=1920&height=1080&seq=hero001&orientation=landscape');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Hero Slider Styles */
.hero-slider {
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.carousel {
    height: 100vh;
}

.carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide .container {
    z-index: 2;
    position: relative;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    z-index: 15;
}

/* Modern Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 15;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-strong);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

/* Modern Carousel Indicators */
.carousel-indicators {
    bottom: 40px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    transition: var(--transition-normal);
    opacity: 0.7;
    backdrop-filter: blur(5px);
}

.carousel-indicators [data-bs-target]:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
    background: var(--gradient-primary);
    border-color: white;
    transform: scale(1.4);
    opacity: 1;
    box-shadow: var(--shadow-soft);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 25px;
    }

    .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

/* Modern Custom Colors */
.bg-primary-custom {
    background: var(--gradient-primary) !important;
    color: white !important;
}

.bg-secondary-custom {
    background: var(--gradient-secondary) !important;
}

.bg-secondary-light {
    background-color: var(--secondary-light) !important;
}

.bg-tertiary-custom {
    background-color: var(--secondary-dark) !important;
}

.bg-quaternary-custom {
    background-color: var(--quaternary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

/* Modern Gradient Backgrounds */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

/* Bootstrap Override for Custom Colors */
.bg-quaternary-custom.bg-opacity-25 {
    background-color: rgba(219, 201, 187, 0.25) !important;
}

.bg-tertiary-custom.bg-opacity-50 {
    background-color: rgba(217, 205, 189, 0.5) !important;
}

/* Blog Tab Styles */
.blog-tab-btn {
    transition: all 0.3s ease;
}

.blog-tab-btn.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.blog-tab-btn:not(.active) {
    color: #6c757d;
}

/* Blog Tab Navigation Responsive */
@media (max-width: 768px) {
    .blog-tab-btn {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        white-space: nowrap;
    }

    .bg-light.p-1.rounded-pill {
        width: 100% !important;
        max-width: 300px !important;
    }

    .bg-light.p-1.rounded-pill.d-flex {
        gap: 0.25rem !important;
    }
}

@media (max-width: 576px) {
    .blog-tab-btn {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .bg-light.p-1.rounded-pill {
        max-width: 280px !important;
    }
}

/* Icon Container */
.icon-container {
    width: 64px;
    height: 64px;
    background-color: rgba(98, 103, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Contact Icon Container */
.contact-icon-container {
    width: 48px;
    height: 48px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon-container i {
    color: var(--primary-color);
}

/* Social Media Icons */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: white;
}

/* Card Hover Effects */
.card-hover {
    transition: box-shadow 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Modern Form Styles */
.form-control {
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--secondary-dark);
    transition: var(--transition-normal);
    padding: 0.75rem 1rem;
    background-color: var(--secondary-light);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(98, 103, 107, 0.15);
    transform: translateY(-1px);
}

.form-select {
    border-radius: var(--border-radius-sm);
    border: 2px solid #e9ecef;
    transition: var(--transition-normal);
    padding: 0.75rem 1rem;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(98, 103, 107, 0.15);
    transform: translateY(-1px);
}

/* Modern Input Groups */
.input-group {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.input-group:focus-within {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.input-group-text {
    background: var(--gradient-secondary);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Content Tabs */
.blog-content {
    display: none;
}

.blog-content.active {
    display: block;
}

/* Blog Detail Content */
.blog-detail-content {
    display: block;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Film-Kitap Detail Content */
.film-kitap-detail-content {
    display: block;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.film-kitap-detail-content p {
    margin-bottom: 1.5rem;
}

.film-kitap-detail-content h1,
.film-kitap-detail-content h2,
.film-kitap-detail-content h3,
.film-kitap-detail-content h4,
.film-kitap-detail-content h5,
.film-kitap-detail-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Image */
.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Service Card Images */
.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 0.5rem 0.5rem 0 0;
}

/* Blog Card Images */
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.blog-img:hover {
    transform: scale(1.02);
}

/* Responsive blog images */
@media (max-width: 768px) {
    .blog-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .blog-img {
        height: 160px;
    }
}

/* About Section Image - 9:16 Format (Dikey) */
.about-img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16; /* 9:16 oranını zorla */
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

/* Responsive About Image */
@media (max-width: 768px) {
    .about-img {
        max-width: 300px;
        aspect-ratio: 9/16; /* Mobilde de 9:16 oranı korunur */
    }
}

@media (max-width: 576px) {
    .about-img {
        max-width: 250px;
        aspect-ratio: 9/16; /* Küçük ekranlarda da 9:16 oranı korunur */
    }
}

/* Custom Spacing */
.py-section {
    padding: 5rem 0;
}

/* Header Position for Mobile Menu */
/* Bootstrap sticky-top class'ını kullan */

/* Mobile Menu */
.mobile-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e9ecef;
}

.mobile-menu.show {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Responsive */
@media (max-width: 767.98px) {
    .mobile-menu {
        border-top: 1px solid #e9ecef;
    }

    .mobile-menu ul li {
        border-bottom: 1px solid #f8f9fa;
    }

    .mobile-menu ul li:last-child {
        border-bottom: none;
    }

    #mobile-menu-btn {
        padding: 0.5rem;
        border: none;
        background: none;
    }

    #mobile-menu-btn:focus {
        box-shadow: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities */
.text-tinos {
    font-family: 'Tinos', serif;
}

.font-tinos {
    font-family: 'Tinos', serif;
}

/* Overlay for Hero */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Custom Border Radius */
.rounded-custom {
    border-radius: 8px;
}

.rounded-custom-lg {
    border-radius: 16px;
}

/* Modern Button Styles */
.btn {
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: var(--transition-normal);
}

.btn-outline-primary-custom:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: none;
}

.btn-outline-primary-custom:focus {
    box-shadow: 0 0 0 0.2rem rgba(98, 103, 107, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Filter Button Group */
.filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn-group .btn {
    margin: 0.25rem;
    white-space: nowrap;
}

/* Service Card Buttons */
.service-card .btn {
    min-width: 120px;
}

/* List Item Bullets */
.list-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Star Rating */
.star-rating {
    color: #ffc107;
}

/* Book Category Icons */
.book-category i {
    margin-right: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-bg h1 {
        font-size: 2.5rem;
    }

    .hero-bg p {
        font-size: 1.25rem;
    }

    .py-section {
        padding: 3rem 0;
    }

    .filter-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn-group .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.25rem 0;
    }

    .service-card .btn {
        min-width: 100px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .hero-bg h1 {
        font-size: 2rem;
    }

    .hero-bg p {
        font-size: 1.125rem;
    }

    .filter-btn-group .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .service-card .btn {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Modern Film/Kitap Kartları */
.film-kitap-card {
    transition: var(--transition-normal);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.film-kitap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.film-kitap-card:hover::before {
    opacity: 0.1;
}

.film-kitap-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.film-kitap-card .card-img-top {
    transition: var(--transition-slow);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.film-kitap-card:hover .card-img-top {
    transform: scale(1.1);
}

.film-kitap-card .card-body {
    position: relative;
    z-index: 2;
    background: white;
}

.film-kitap-card .badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.film-kitap-card .position-absolute {
    z-index: 3;
}

/* Film/Kitap Kartları Responsive */
@media (max-width: 768px) {
    .film-kitap-card {
        margin-bottom: 1.5rem;
    }

    .film-kitap-card .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Modern Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Animation */
.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Table Styles */
.table {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.table thead th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background-color: rgba(98, 103, 107, 0.05);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1rem;
    border-color: rgba(98, 103, 107, 0.1);
    vertical-align: middle;
}

/* Modern Badge Styles */
.badge {
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Modern Alert Styles */
.alert {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left-color: #28a745;
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left-color: #ffc107;
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left-color: #17a2b8;
    color: #0c5460;
}

/* Modern Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border: none;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
}

/* Modern Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    transition: var(--transition-normal);
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}


/* Responsive Improvements */
@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .table-responsive {
        border-radius: var(--border-radius-md);
    }
}

/* Services Tab Navigation Styles */
#servicesTab .nav-link {
    color: var(--primary-color);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    background: transparent;
}

#servicesTab .nav-link:hover {
    color: var(--primary-color);
    background: rgba(98, 103, 107, 0.05);
    border-bottom-color: rgba(98, 103, 107, 0.3);
}

#servicesTab .nav-link.active {
    color: var(--primary-color);
    background: rgba(98, 103, 107, 0.08);
    border-bottom-color: var(--primary-color);
    font-weight: 700;
}

.service-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-normal);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.service-icon-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon-container:hover .service-icon {
    transform: scale(1.1);
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Services */
@media (max-width: 768px) {
    #servicesTab .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .service-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .tab-content {
        min-height: 250px;
    }
}

/* Movie Card Styles */
.movie-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.movie-poster-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
}

.movie-info {
    background: white;
    border-top: 3px solid var(--primary-color);
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
}

.blog-info {
    background: white;
    border-top: 3px solid var(--primary-color);
}

/* Book Card Styles */
.book-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.book-cover-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.book-card:hover .book-cover {
    transform: scale(1.05);
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.book-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
}

.book-info {
    background: white;
    border-top: 3px solid var(--primary-color);
}

/* Responsive Movie, Book & Blog Cards */
@media (max-width: 768px) {

    .movie-poster-container,
    .book-cover-container,
    .blog-image-container {
        height: 250px;
    }

    .movie-overlay,
    .book-overlay,
    .blog-overlay {
        padding: 0.75rem;
    }

    .movie-badges,
    .book-badges,
    .blog-badges {
        gap: 0.25rem;
    }

    .movie-rating,
    .book-pages,
    .blog-date {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .movie-info,
    .book-info,
    .blog-info {
        padding: 1rem !important;
    }
}

@media (max-width: 576px) {

    .movie-poster-container,
    .book-cover-container,
    .blog-image-container {
        height: 200px;
    }

    .movie-overlay,
    .book-overlay,
    .blog-overlay {
        padding: 0.5rem;
    }

    .movie-rating,
    .book-pages,
    .blog-date {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.5);
    }
}

/* Modern Hero Section Animations */
.modern-hero {
    position: relative;
    min-height: 17.5vh;
    /* 70vh * 0.25 = 17.5vh (3/4 azaltma) */
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(82, 82, 82, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 244, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(159, 167, 173, 0.25) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0% {
        transform: scale(1) translateX(0) translateY(0);
        opacity: 1;
        filter: hue-rotate(0deg);
    }

    25% {
        transform: scale(1.05) translateX(20px) translateY(-10px);
        opacity: 0.9;
        filter: hue-rotate(90deg);
    }

    50% {
        transform: scale(1.1) translateX(-15px) translateY(15px);
        opacity: 0.8;
        filter: hue-rotate(180deg);
    }

    75% {
        transform: scale(1.05) translateX(10px) translateY(-20px);
        opacity: 0.9;
        filter: hue-rotate(270deg);
    }

    100% {
        transform: scale(1) translateX(0) translateY(0);
        opacity: 1;
        filter: hue-rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) skewX(5deg);
        filter: blur(10px) saturate(0.5);
    }

    35% {
        opacity: 0.4;
        transform: translateY(30px) scale(0.95) skewX(2deg);
        filter: blur(6px) saturate(0.7);
    }

    65% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.02) skewX(-1deg);
        filter: blur(3px) saturate(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) skewX(0deg);
        filter: blur(0px) saturate(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroTitleSlide 1.8s ease-out 0.3s both;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.8) skewX(-10deg);
        filter: blur(10px) brightness(0.5);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    30% {
        opacity: 0.5;
        transform: translateX(-30px) scale(0.9) skewX(-5deg);
        filter: blur(5px) brightness(0.8);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }

    60% {
        opacity: 0.8;
        transform: translateX(10px) scale(1.05) skewX(2deg);
        filter: blur(2px) brightness(1.1);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) skewX(0deg);
        filter: blur(0px) brightness(1);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: heroSubtitleSlide 1.8s ease-out 0.6s both;
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(20px) scale(0.9) skewY(5deg);
        filter: blur(5px) contrast(0.5);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }

    40% {
        opacity: 0.6;
        transform: translateX(20px) translateY(10px) scale(0.95) skewY(2deg);
        filter: blur(2px) contrast(0.8);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }

    70% {
        opacity: 0.9;
        transform: translateX(-5px) translateY(-5px) scale(1.02) skewY(-1deg);
        filter: blur(1px) contrast(1.1);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) skewY(0deg);
        filter: blur(0px) contrast(1);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}


/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(159, 167, 173, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation: float 14s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 30%;
    animation: float 9s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px) scale(1) skew(0deg);
        opacity: 0.7;
        border-radius: 50%;
    }

    25% {
        transform: translateY(-20px) translateX(15px) scale(1.2) skew(5deg);
        opacity: 0.9;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        transform: translateY(-35px) translateX(-10px) scale(0.8) skew(-3deg);
        opacity: 1;
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    75% {
        transform: translateY(-15px) translateX(20px) scale(1.1) skew(2deg);
        opacity: 0.9;
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }

    100% {
        transform: translateY(0px) translateX(0px) scale(1) skew(0deg);
        opacity: 0.7;
        border-radius: 50%;
    }
}


/* Modern Table Styles */
.modern-table {
    border: none;
    box-shadow: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    position: relative;
}

.modern-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.modern-table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.modern-table thead th:first-child {
    border-top-left-radius: 20px;
}

.modern-table thead th:last-child {
    border-top-right-radius: 20px;
}

.modern-table tbody tr {
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 248, 246, 0.95);
    position: relative;
    z-index: 2;
}

.modern-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-3px) scale(1.01);
    box-shadow: none;
    border-radius: 15px;
    margin: 0 8px;
}

.modern-table tbody td {
    border: none;
    padding: 1.5rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(98, 103, 107, 0.2);
    color: var(--primary-color);
}

.modern-table tbody tr:last-child td {
    border-bottom: none;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-normal);
}

.modern-table tbody h5 {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.modern-table tbody p {
    color: rgba(98, 103, 107, 0.8) !important;
}

.service-row:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.service-row {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table Responsive */
@media (max-width: 768px) {
    .modern-table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .modern-table tbody td {
        padding: 1rem 0.5rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Button container responsive */
    .modern-table .d-flex.flex-column.flex-md-row {
        gap: 0.5rem;
    }

    .modern-table .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-table thead th {
        padding: 0.8rem 0.3rem;
        font-size: 0.8rem;
    }

    .modern-table tbody td {
        padding: 0.8rem 0.3rem;
    }

    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Button container responsive for small mobile */
    .modern-table .d-flex.flex-column.flex-md-row {
        gap: 0.25rem;
    }

    .modern-table .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .modern-table .btn:last-child {
        margin-bottom: 0;
    }
}

/* Logo Styles */
.logo-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(82, 82, 82, 0.1));
    background: transparent;
    border: none;
    outline: none;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(82, 82, 82, 0.2));
    background: transparent;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(82, 82, 82, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(82, 82, 82, 0.6);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 15vh;
        /* Mobilde daha da küçük */
    }

}

@media (max-width: 576px) {
    .modern-hero {
        min-height: 12vh;
        /* Küçük mobilde en küçük boyut */
    }


    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .floating-element {
        display: none;
    }
}

/* Modern Service Bullet Points */
.service-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.bullet-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gradient-accent);
    border-radius: 50%;
    position: relative;
    transition: var(--transition-normal);
}

.bullet-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(98, 103, 107, 0.2);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.service-row:hover .bullet-point {
    background: var(--gradient-primary);
    transform: scale(1.3) rotate(180deg);
    box-shadow: none;
}

.service-row:hover .bullet-point::before {
    background: rgba(82, 82, 82, 0.3);
    transform: translate(-50%, -50%) scale(1.3);
}

@media (max-width: 576px) {
    .modern-hero {
        min-height: 12vh;
        /* Küçük mobilde en küçük boyut */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   MODERN MODAL STYLES
   ======================================== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Container */
.modal-container {
    position: relative;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    margin: 0;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100000;
}

.modal-overlay.show .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Modal Content */
.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.modal-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #495057;
    transform: rotate(90deg);
}

/* Modal Body */
.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

/* Modal Image */
.modal-image-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.05);
}

.modal-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Modal Title */
.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Modal Summary */
.modal-summary {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Modal Details */
.modal-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.detail-item i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 60px;
}

.detail-value {
    color: #495057;
    font-weight: 500;
}

/* Modal Content Text */
.modal-content-text {
    margin-bottom: 2rem;
}

.content-text {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
}

/* Modal Tags */
.modal-tags {
    margin-bottom: 1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-container .badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tags-container .badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        visibility: hidden;
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        visibility: visible;
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(100px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes modalBounceIn {
    0% {
        transform: scale(0.3) translateY(100px);
        opacity: 0;
    }

    50% {
        transform: scale(1.05) translateY(-10px);
        opacity: 0.8;
    }

    70% {
        transform: scale(0.95) translateY(5px);
        opacity: 0.9;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 90%;
        max-width: 600px;
        max-height: 85vh;
    }

    .modal-header {
        padding: 0.75rem 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-image {
        height: 250px;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .detail-label {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .modal-container {
        width: 95%;
        max-width: 500px;
        margin: 0.5rem auto;
    }

    .modal-header {
        padding: 0.75rem;
    }

    .modal-body {
        padding: 0.75rem;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    .modal-image {
        height: 200px;
    }

    .modal-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Body Blur Effect */
body.modal-open {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

body.modal-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.modal-open.show-blur::before {
    opacity: 1;
}

/* ========================================
   BOOTSTRAP MODAL WITH BLURRED BACKGROUND
   ======================================== */

/* Bootstrap Modal Backdrop Blur - Ultra Strong Blur */
.modal-backdrop.show {
    backdrop-filter: blur(50px) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.modal-backdrop {
    backdrop-filter: blur(50px) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
}

/* Full page ultra blur when modal is open */
body.modal-open {
    overflow: hidden !important;
}

body.modal-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(50px) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    z-index: 1040;
    pointer-events: none;
}

/* Additional blur layers for maximum effect */
body.modal-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    z-index: 1041;
    pointer-events: none;
}

/* Bootstrap Modal Dialog - Horizontal Layout */
.modal-dialog {
    max-width: 1200px !important;
    width: 95% !important;
}

/* Modal z-index - Above all blur layers */
#filmKitapModal,
#blogModal {
    z-index: 1060 !important;
}

/* Blog Modal özel stilleri */
#blogModal {
    display: none !important;
}

#blogModal.show {
    display: block !important;
}

#blogModal .modal-dialog,
#filmKitapModal .modal-dialog {
    z-index: 1061 !important;
}

/* Bootstrap Modal Custom Styling */
.modal-content {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4) !important;
    max-height: 80vh !important;
    overflow: hidden !important;
    width: 100% !important;
    background: #ffffff !important;
    z-index: 1062 !important;
    position: relative !important;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--gradient-primary);
    color: white;
}

.modal-body {
    padding: 1.5rem !important;
    max-height: calc(90vh - 120px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Modal Image Styling */
.modal-body img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100% !important;
    height: auto !important;
    min-height: 400px !important;
    object-fit: contain !important;
    object-position: center !important;
    background-color: #f8f9fa;
}

.modal-body img:hover {
    transform: scale(1.02);
}

/* Modal content özel düzenlemeleri */
.modal-content .modal-body .col-lg-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.modal-content .modal-body .col-lg-6:first-child .position-relative {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Detail Items Styling */
.modal-body .bg-light {
    background-color: #f8f9fa !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-body .bg-light:hover {
    background-color: #e9ecef !important;
    transform: translateX(3px);
}

/* Tags Styling */
.modal-body .badge {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.modal-body .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Close Button Styling */
.btn-close {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    opacity: 1;
    filter: none;
}

.btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    opacity: 1;
}

/* Custom Close Button for Dark Header */
.btn-close-custom {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-radius: 8px !important;
    width: 36px !important;
    height: 36px !important;
    opacity: 1 !important;
    filter: none !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg) !important;
    opacity: 1 !important;
}

.btn-close-custom span {
    color: white !important;
    font-size: 24px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ========================================
   CSS-ONLY CARD CAROUSEL
   ======================================== */

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Tüm kartları gösterebilmek için tam genişlik */
    margin: 2rem auto;
    /* Ortala */
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 16px;
    padding: 1rem 0;
    width: max-content;
}

/* Carousel disabled state for <=3 cards */
.carousel-track.no-carousel {
    animation: none !important;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.carousel-track:hover:not(.no-carousel) {
    animation-play-state: paused;
}

.carousel-card {
    flex: 0 0 214px;
    /* 9:16 oranında genişlik */
    min-width: 214px;
    max-height: 380px;
    height: 380px;
}

/* Film, kitap ve blog kartlarında sadece resim görünmesi */
.carousel-card .movie-card,
.carousel-card .book-card,
.carousel-card .blog-card {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-card .movie-poster-container,
.carousel-card .book-cover-container,
.carousel-card .blog-image-container {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-card .movie-poster,
.carousel-card .book-cover,
.carousel-card .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Film, kitap ve blog kartlarında info kısmını gizle */
.carousel-card .movie-info,
.carousel-card .book-info,
.carousel-card .blog-info {
    display: none !important;
}

/* Overlay'leri de gizle */
.carousel-card .movie-overlay,
.carousel-card .book-overlay,
.carousel-card .blog-overlay {
    display: none !important;
}

/* Carousel Animation - Infinite Loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-214px * 10 - 16px * 9));
    }
}

/* Carousel Card Hover Effects */
.carousel-card:hover .blog-card,
.carousel-card:hover .movie-card,
.carousel-card:hover .book-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Carousel Gradient Overlays */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary-light), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-light), transparent);
}

/* Responsive Carousel - Infinite Loop */
@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
        /* Tüm kartları gösterebilmek için tam genişlik */
    }

    .carousel-card {
        flex: 0 0 187px;
        /* 9:16 oranında genişlik */
        min-width: 187px;
        max-height: 332.5px;
        height: 332.5px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 60px;
    }

    /* Tablet'te de film/kitap/blog kartlarında sadece resim */
    .carousel-card .movie-card,
    .carousel-card .book-card,
    .carousel-card .blog-card {
        padding: 0 !important;
        height: 100%;
    }

    .carousel-card .movie-info,
    .carousel-card .book-info,
    .carousel-card .blog-info,
    .carousel-card .movie-overlay,
    .carousel-card .book-overlay,
    .carousel-card .blog-overlay {
        display: none !important;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-187px * 10 - 16px * 9));
        }
    }
}

@media (max-width: 576px) {
    .carousel-container {
        width: 100%;
        /* Tüm kartları gösterebilmek için tam genişlik */
    }

    .carousel-card {
        flex: 0 0 160px;
        /* 9:16 oranında genişlik */
        min-width: 160px;
        max-height: 285px;
        height: 285px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 40px;
    }

    /* Mobile'de de film/kitap/blog kartlarında sadece resim */
    .carousel-card .movie-card,
    .carousel-card .book-card,
    .carousel-card .blog-card {
        padding: 0 !important;
        height: 100%;
    }

    .carousel-card .movie-info,
    .carousel-card .book-info,
    .carousel-card .blog-info,
    .carousel-card .movie-overlay,
    .carousel-card .book-overlay,
    .carousel-card .blog-overlay {
        display: none !important;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-160px * 10 - 16px * 9));
        }
    }
}

/* ========================================
   VERTICAL SERVICES CAROUSEL
   ======================================== */

.services-carousel {
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.services-track {
    display: flex;
    flex-direction: column;
    animation: scrollVertical 20s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
    height: max-content;
}

.services-track:hover {
    animation-play-state: paused;
}

.services-track.no-carousel {
    animation: none !important;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}

.service-card {
    flex: 0 0 auto;
    min-height: 120px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Vertical Carousel Animation */
@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-140px * 3 - 2rem * 3));
        /* Adjusted for 3 duplicates */
    }
}

/* Services Carousel Gradient Overlays */
.services-carousel::before,
.services-carousel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 2;
    pointer-events: none;
}

.services-carousel::before {
    top: 0;
    background: linear-gradient(to bottom, var(--secondary-light), transparent);
}

.services-carousel::after {
    bottom: 0;
    background: linear-gradient(to top, var(--secondary-light), transparent);
}

/* Responsive Services Carousel */
@media (max-width: 768px) {
    .services-carousel {
        height: 350px;
    }

    .service-item {
        padding: 1rem;
    }

    @keyframes scrollVertical {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-120px * 3 - 2rem * 3));
            /* Adjusted for 3 duplicates */
        }
    }
}

@media (max-width: 576px) {
    .services-carousel {
        height: 300px;
    }

    .service-item {
        padding: 0.8rem;
    }

    @keyframes scrollVertical {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(-100px * 2 - 2rem * 2));
            /* Adjusted for 2 duplicates */
        }
    }
}

/* Responsive Design - Mobile Vertical Layout */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
        max-width: 95% !important;
    }

    .modal-body {
        padding: 1rem;
        max-height: calc(80vh - 100px);
    }

    .modal-content {
        max-height: 80vh;
    }

    /* Mobile'da dikey layout */
    .modal-body .col-lg-6:first-child {
        margin-bottom: 1rem;
    }

    .modal-body img {
        min-height: 300px !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .modal-content .modal-body .col-lg-6:first-child {
        min-height: 300px !important;
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: 98% !important;
    }

    .modal-body {
        padding: 0.75rem;
        max-height: calc(80vh - 80px);
    }

    .modal-content {
        max-height: 80vh;
    }

    .modal-body img {
        min-height: 250px !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .modal-content .modal-body .col-lg-6:first-child {
        min-height: 250px !important;
    }
}

/* WhatsApp Floating Button Rolling Animation */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 280px;
    /* Footer'ın üstünde */
    right: 30px;
    background: var(--gradient-primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    /* Footer'dan üstte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Sadece ilk yüklemede animation çalışsın */
.whatsapp-float.first-load {
    animation: rollIn 3s ease-out;
}

.whatsapp-float:hover {
    background: #ffffff;
    /* Açık renk arka plan */
    color: var(--primary-custom);
    /* Koyu renk icon */
    transform: scale(1.1);
    animation-play-state: paused;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-custom);
    /* Koyu renk border */
}

@keyframes rollIn {
    0% {
        transform: translateX(-100vw) rotate(-720deg);
        opacity: 0;
    }

    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 240px;
        /* Mobile footer'ın üstünde */
        right: 25px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 220px;
        /* Küçük ekranlarda footer'ın üstünde */
        right: 20px;
        font-size: 18px;
    }
}

/* Cache cleared: 2025-09-22 13:27:38 */
/* Cache cleared: 2025-09-22 13:28:41 */
/* Cache cleared: 2025-09-22 13:29:48 */
/* Cache cleared: 2025-09-22 13:29:50 */

/* Cache göstergesi kaldırıldı - Otomatik cache yönetimi aktif */
/* Cache cleared: 2025-01-27 15:30:00 - Çalışma saatleri renkleri güncellendi */
/* Cache cleared: 2025-01-27 16:00:00 - Tema sistemi eklendi */
/* Cache cleared: 2025-01-27 16:15:00 - Pastel renkli tema güncellendi */
/* Cache cleared: 2025-01-27 16:45:00 - Çalışma saatleri tema uyumlu hale getirildi */
/* Cache cleared: 2025-01-27 17:00:00 - Çalışma saatleri tema renkleri optimize edildi */
/* Cache cleared: 2025-01-27 17:15:00 - Çalışma saatleri kolon başlıkları !important ile zorlandı */

/* Çalışma Saatleri Tablosu */
.calisma-saatleri-table {
    font-size: 0.9rem;
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.calisma-saatleri-table th {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.calisma-saatleri-table td {
    border: 1px solid var(--primary-lighter);
    padding: 0.75rem;
    vertical-align: middle;
    text-align: center;
    color: var(--primary-darker);
}

.calisma-saatleri-table .working-day {
    color: #6c757d !important;
}

.calisma-saatleri-table .closed-day-cell .closed-day {
    color: inherit !important;
}

.calisma-saatleri-table td:first-child {
    color: var(--primary-darker);
}

.calisma-saatleri-table tbody tr:nth-child(odd) {
    background-color: var(--secondary-color);
}

.calisma-saatleri-table tbody tr:nth-child(even) {
    background-color: var(--secondary-light);
}

.calisma-saatleri-table tbody tr:hover {
    background-color: var(--secondary-dark);
    transition: background-color 0.2s ease;
}

.working-day {
    color: var(--primary-darker);
    font-weight: 600;
}

.closed-day {
    color: #CBD1D6;
    font-weight: 600;
}

.closed-day-cell {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Pastel Tema için Özel Çalışma Saatleri Renkleri */
[data-theme="colorful"] .calisma-saatleri-table th {
    background-color: var(--primary-color) !important;
    color: white !important;
}

[data-theme="colorful"] .calisma-saatleri-table td {
    color: var(--primary-darker);
    border-color: var(--primary-lighter);
}

[data-theme="colorful"] .calisma-saatleri-table td:first-child {
    color: var(--primary-darker);
}

[data-theme="colorful"] .calisma-saatleri-table tbody tr:nth-child(odd) {
    background-color: var(--secondary-color);
}

[data-theme="colorful"] .calisma-saatleri-table tbody tr:nth-child(even) {
    background-color: var(--secondary-light);
}

[data-theme="colorful"] .calisma-saatleri-table tbody tr:hover {
    background-color: var(--secondary-dark);
}

[data-theme="colorful"] .working-day {
    color: var(--primary-darker) !important;
}

[data-theme="colorful"] .closed-day {
    color: #CBD1D6 !important;
}

[data-theme="colorful"] .closed-day-cell {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Çalışma Saatleri Tablosu - Daha Spesifik Kurallar */
table.calisma-saatleri-table thead th {
    background-color: var(--primary-color) !important;
    color: white !important;
}

[data-theme="colorful"] table.calisma-saatleri-table thead th {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Responsive çalışma saatleri */
@media (max-width: 576px) {
    .calisma-saatleri-table {
        font-size: 0.8rem;
    }
    
    .calisma-saatleri-table th,
    .calisma-saatleri-table td {
        padding: 0.5rem;
    }
}