/**
 * Public Site CSS
 * Tema renkleri CSS değişkenleri ile dinamik olarak uygulanır
 */

:root {
    --primary-color: #004aad;
    --secondary-color: #007bff;
    --background-color: #ffffff;
    --text-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar - Slider Üzerinde Glassmorphism */
.top-bar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: all 0.3s ease;
}

.top-bar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-bar-info i {
    margin-right: 5px;
}

/* Top Bar Social Links - Tam Sağa Hizalı */
.social-links-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.top-bar .social-links-top a {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.top-bar .social-links-top a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
}

/* Genel Social Links (diğer sayfalar için) */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    color: white;
    font-size: 16px;
    margin-left: 15px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Header Modern - Slider Üzerinde Glassmorphism */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1030;
    position: fixed;
    top: 45px; /* Top bar yüksekliği */
    left: 0;
    right: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* Top bar scroll durumunda gizle */
body.scrolled .top-bar {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Responsive - Top bar mobilde gizli */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
    
    .main-header {
        top: 0 !important;
        padding: 12px 0;
    }
    
    /* Mobil navbar düzeni */
    .navbar .container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    /* Logo mobilde ortada ve büyük */
    .navbar-brand {
        font-size: 42px !important;
        margin: 0 !important;
    }
    
    .main-header .navbar-brand .site-logo {
        max-height: 85px !important;
        max-width: 260px !important;
        transform: scale(1.05) !important;
    }
    
    /* Scroll durumunda da aynı boyut */
    .main-header.scrolled .navbar-brand .site-logo {
        max-height: 85px !important;
        max-width: 260px !important;
        transform: scale(1.05) !important;
    }
    
    /* Hover efektini kaldır - zaten büyük boyutta */
    .main-header .navbar-brand:hover {
        transform: none !important;
    }
    
    .main-header .navbar-brand:hover .site-logo {
        transform: scale(1.05) !important;
        max-height: 85px !important;
        max-width: 260px !important;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none !important;
    }
    
    .main-header {
        top: 0 !important;
        padding: 10px 0;
    }
    
    /* Mobil navbar düzeni */
    .navbar .container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    /* Logo küçük ekranlarda */
    .navbar-brand {
        font-size: 38px !important;
        margin: 0 !important;
    }
    
    .main-header .navbar-brand .site-logo {
        max-height: 80px !important;
        max-width: 240px !important;
        transform: scale(1.05) !important;
    }
    
    /* Scroll durumunda da aynı boyut */
    .main-header.scrolled .navbar-brand .site-logo {
        max-height: 80px !important;
        max-width: 240px !important;
        transform: scale(1.05) !important;
    }
    
    /* Hover efektini kaldır - zaten büyük boyutta */
    .main-header .navbar-brand:hover {
        transform: none !important;
    }
    
    .main-header .navbar-brand:hover .site-logo {
        transform: scale(1.05) !important;
        max-height: 80px !important;
        max-width: 240px !important;
    }
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.navbar-brand:hover {
    transform: none !important;
}

/* Site Logo - Sade ve Temiz Tasarım */
/* Sadece header içindeki logo için transform uygula, mobil menü içindeki değil */
.main-header .navbar-brand .site-logo,
.main-header .navbar .navbar-brand .site-logo {
    max-height: 90px !important;
    height: auto;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: scale(1.05) !important;
}

.main-header .navbar-brand:hover .site-logo {
    transform: scale(1.05) !important;
}

/* Scrolled header için logo boyutu */
.main-header.scrolled .navbar-brand .site-logo {
    max-height: 90px !important;
    max-width: 180px;
    transform: scale(1.05) !important;
}

/* Responsive Logo */
@media (max-width: 991px) {
    .main-header .navbar-brand .site-logo {
        max-height: 60px !important;
        max-width: 180px;
        transform: scale(1.05) !important;
    }
    
    .main-header.scrolled .navbar-brand .site-logo {
        max-height: 55px !important;
        max-width: 160px;
        transform: scale(1.05) !important;
    }
}

@media (max-width: 768px) {
    .main-header .navbar-brand .site-logo {
        max-height: 85px !important;
        max-width: 260px !important;
        transform: scale(1.05) !important;
    }
    
    .main-header.scrolled .navbar-brand .site-logo {
        max-height: 85px !important;
        max-width: 260px !important;
        transform: scale(1.05) !important;
    }
}

@media (max-width: 576px) {
    .main-header .navbar-brand .site-logo {
        max-height: 80px !important;
        max-width: 240px !important;
        transform: scale(1.05) !important;
    }
    
    .main-header.scrolled .navbar-brand .site-logo {
        max-height: 80px !important;
        max-width: 240px !important;
        transform: scale(1.05) !important;
    }
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 20px !important;
    transition: all 0.3s;
    position: relative;
    border-radius: 8px;
    margin: 0 3px;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 74, 173, 0.05);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 74, 173, 0.08);
}

/* Dropdown Hover - Profesyonel Animasyonlu */
@media (min-width: 992px) {
    .dropdown-hover {
        position: relative;
    }

    .dropdown-hover > .dropdown-toggle {
        cursor: pointer;
    }
    
    /* Bootstrap'in otomatik ok ikonunu gizle */
    .dropdown-hover > .dropdown-toggle::after {
        display: none !important;
    }

    /* Bootstrap'in default dropdown davranışını devre dışı bırak (sadece desktop) */
    .dropdown-hover > .dropdown-toggle[data-bs-toggle="dropdown"] {
        pointer-events: auto;
    }

    .dropdown-hover > .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 0;
        border: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 8px 0;
        min-width: 220px;
        background: white;
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translate(-50%, -8px) scale(0.95);
        pointer-events: none;
        z-index: 1050;
    }

    .dropdown-hover:hover > .dropdown-menu,
    .dropdown-hover > .dropdown-menu:hover,
    .dropdown-hover.show > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
        pointer-events: auto;
    }

    .dropdown-hover > .dropdown-toggle .dropdown-arrow {
        display: inline-block;
        transition: transform 0.25s ease;
        font-size: 10px;
        vertical-align: middle;
        margin-left: 5px;
    }

    .dropdown-hover:hover > .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Dropdown menü açıkken ok ikonu dönmüş kalsın */
    .dropdown-hover.show > .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.dropdown-menu .dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.2s ease;
    border-radius: 0 3px 3px 0;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu .dropdown-item:hover::before {
    height: 60%;
}

.dropdown-menu .dropdown-item.active {
    background: rgba(0, 74, 173, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-menu .dropdown-item.active::before {
    height: 60%;
}

.dropdown-menu .dropdown-item i {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Mobile için dropdown normal çalışır (click) - Bootstrap default */
@media (max-width: 991.98px) {
    /* Bootstrap'in otomatik ok ikonunu gizle (mobile'da da) */
    .dropdown-hover > .dropdown-toggle::after {
        display: none !important;
    }
    
    .dropdown-hover > .dropdown-toggle .dropdown-arrow {
        transition: transform 0.25s ease;
    }
    
    .dropdown-hover.show > .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.btn-contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.btn-contact-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
    color: white;
}

.btn-contact-header i {
    font-size: 14px;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

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

.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(0, 74, 173, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Modern Mobile Menu Toggle - Hamburger Animation */
.mobile-menu-toggle {
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:focus {
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.2);
    outline: none;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.1), rgba(0, 123, 255, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hamburger Animation - Active State */
.mobile-menu-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 107, 107, 0.1));
    transform: rotate(180deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

/* Mobile Menu Wrapper - Tam Kontrol */
.mobile-menu-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 65vw !important;
    max-width: 65% !important;
    height: 100vh !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.99) 50%, 
        rgba(241, 245, 249, 0.98) 100%) !important;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    z-index: 10000 !important; /* Backdrop'un üstünde */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important; /* Kapalıyken tıklanamaz */
    /* Scrollbar Stilleri - Tema Renginden */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.3);
    padding-bottom: 100px;
}

/* Webkit Scrollbar (Chrome, Safari, Edge) */
.mobile-menu-wrapper::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 20px 0;
}

.mobile-menu-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mobile-menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Açık durumu - En yüksek öncelik */
.mobile-menu-wrapper.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important; /* Açıkken tıklanabilir */
}

/* Mobil menü içindeki tüm elementlerin transform'unu sıfırla (wrapper'ın kendi transform'u hariç) */
.mobile-menu-wrapper .site-logo,
.mobile-menu-wrapper .navbar-brand,
.mobile-menu-wrapper .mobile-menu-content,
.mobile-menu-wrapper .mobile-menu-header,
.mobile-menu-wrapper .mobile-nav-menu,
.mobile-menu-wrapper .mobile-menu-close,
.mobile-menu-wrapper .mobile-menu-footer,
.mobile-menu-wrapper .mobile-contact-info,
.mobile-menu-wrapper .mobile-social-links,
.mobile-menu-wrapper .btn-contact-mobile,
.mobile-menu-wrapper .contact-info-item,
.mobile-menu-wrapper .social-icon-link {
    transform: none !important;
}

/* Mobil menü açıkken tüm içerik tıklanabilir olmalı */
.mobile-menu-wrapper.active * {
    pointer-events: auto !important;
}

/* Mobil menü içindeki tıklanabilir elementler için cursor */
.mobile-menu-wrapper.active .mobile-nav-menu .nav-link,
.mobile-menu-wrapper.active .btn-contact-mobile,
.mobile-menu-wrapper.active .mobile-social-links a,
.mobile-menu-wrapper.active .mobile-menu-close {
    cursor: pointer !important;
}

/* Mobil menü içindeki metin elementleri için cursor */
.mobile-menu-wrapper.active .mobile-menu-header,
.mobile-menu-wrapper.active .mobile-menu-header h3,
.mobile-menu-wrapper.active .mobile-contact-info,
.mobile-menu-wrapper.active .contact-info-item {
    cursor: default !important;
}

.mobile-menu-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none !important; /* Tıklamaları engellemez */
    z-index: 1 !important; /* Content'in altında */
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
    width: 48px !important;
    height: 48px !important;
    border: none !important;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 107, 107, 0.1)) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #dc3545 !important;
    font-size: 18px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001 !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.1) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.mobile-menu-close:hover {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 90px 35px 100px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10 !important; /* ::before pseudo-element'in üstünde */
    pointer-events: auto !important;
    cursor: default !important;
}

.mobile-menu-header {
    margin-bottom: 45px;
    text-align: center;
    position: relative;
}

.mobile-menu-header h3 {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-clip: text;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 74, 173, 0.1);
}

.mobile-menu-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 74, 173, 0.3);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-menu .nav-item {
    margin-bottom: 8px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 16px;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.3);
}

.mobile-nav-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 0 0 16px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-nav-menu .nav-link:hover::before,
.mobile-nav-menu .nav-link.active::before {
    width: 100%;
    border-radius: 16px;
}

.mobile-nav-menu .nav-link i {
    margin-right: 18px;
    font-size: 18px;
    width: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover i,
.mobile-nav-menu .nav-link.active i {
    transform: scale(1.1);
}

/* Mobile Contact Button */
.btn-contact-mobile {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.btn-contact-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
    color: white;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 74, 173, 0.1);
}

.mobile-contact-info {
    margin-bottom: 25px;
}

.mobile-contact-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-info-item:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.contact-info-item i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    color: var(--primary-color);
}

/* Mobile Social Links */
.mobile-social-links h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon-link.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737, #fccc63);
}

.social-icon-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-icon-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-icon-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 9998 !important; /* Menünün altında kalmalı - ÇOK ÖNEMLİ */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none !important; /* Kapalıyken tıklanamaz */
}

.mobile-menu-backdrop.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important; /* Açıkken backdrop tıklanabilir (menüyü kapatmak için) */
}

/* Backdrop'un menünün üzerine gelmesini engelle - ÇOK ÖNEMLİ */
.mobile-menu-wrapper.active ~ .mobile-menu-backdrop,
.mobile-menu-backdrop.show {
    z-index: 9998 !important; /* Menünün z-index'i 10000, backdrop 9998'de kalmalı */
}

/* Backdrop'un menü alanında pointer-events'ini kapat - KRİTİK */
/* Menü açıkken backdrop'un sol tarafını (menü alanını) devre dışı bırak - clip-path ile */
.mobile-menu-wrapper.active ~ .mobile-menu-backdrop.show,
body:has(.mobile-menu-wrapper.active) .mobile-menu-backdrop.show {
    clip-path: polygon(65vw 0, 100vw 0, 100vw 100vh, 65vw 100vh) !important;
    -webkit-clip-path: polygon(65vw 0, 100vw 0, 100vw 100vh, 65vw 100vh) !important;
}

/* Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Section Padding Optimization */
    section {
        padding: 60px 0 !important;
    }
    
    .py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Container Padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Typography Adjustments */
    .section-title {
        font-size: clamp(28px, 5vw, 36px) !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 15px;
    }
    
    .section-subtitle-small {
        font-size: 14px !important;
        margin-bottom: 10px;
    }
    
    /* Card Spacing */
    .card {
        margin-bottom: 20px;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Tighter Spacing for Small Screens */
    section {
        padding: 40px 0 !important;
    }
    
    /* Body padding for smaller screens - no top bar */
    body {
        padding-top: 70px !important; /* Daha küçük header */
    }
    
    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Container Padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Typography Adjustments */
    .section-title {
        font-size: clamp(24px, 4vw, 28px) !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 14px !important;
        margin-bottom: 12px;
    }
    
    .section-subtitle-small {
        font-size: 12px !important;
        margin-bottom: 8px;
    }
    
    /* Card Spacing */
    .card {
        margin-bottom: 15px;
    }
    
    /* Button Adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Row Gutters */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Mobile Card Components Optimization */
@media (max-width: 768px) {
    /* Product Cards */
    .product-card-modern {
        margin-bottom: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    /* Service Cards */
    .service-card-modern {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Team Cards */
    .team-card-new {
        margin-bottom: 20px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-image-container {
        height: 250px;
    }
    
    .team-member-name {
        font-size: 16px;
    }
    
    .team-member-role {
        font-size: 13px;
    }
    
    .social-icon-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-btn i {
        font-size: 14px;
    }
    
    /* Blog Cards */
    .blog-card-modern {
        margin-bottom: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .blog-meta {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    /* Testimonial Cards */
    .testimonial-card-modern {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .testimonial-company {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    /* Smaller Cards for Mobile */
    .product-card-modern,
    .service-card-modern,
    .team-card-new,
    .blog-card-modern,
    .testimonial-card-modern {
        margin-bottom: 15px;
    }
    
    /* Product Cards */
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    /* Service Cards */
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 12px;
    }
    
    .service-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .service-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Team Cards */
    .team-card-new {
        max-width: 250px;
    }
    
    .team-image-container {
        height: 220px;
    }
    
    .team-member-name {
        font-size: 15px;
    }
    
    .team-member-role {
        font-size: 12px;
    }
    
    .social-icon-btn {
        width: 32px;
        height: 32px;
    }
    
    .social-icon-btn i {
        font-size: 13px;
    }
    
    /* Blog Cards */
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 12px;
    }
    
    .blog-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .blog-meta {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    /* Testimonial Cards */
    .testimonial-card-modern {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    .testimonial-company {
        font-size: 11px;
    }
}

/* Mobile Form Optimization */
@media (max-width: 768px) {
    /* Form Controls */
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-select {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    /* Modal Forms */
    .modal-body {
        padding: 20px;
    }
    
    .modal-body .form-control {
        margin-bottom: 15px;
    }
    
    /* CAPTCHA */
    .captcha-wrapper {
        margin: 15px 0;
    }
    
    .captcha-question {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .captcha-numbers {
        font-size: 18px;
        padding: 10px 20px;
        min-width: 140px;
    }
    
    .captcha-refresh {
        align-self: center;
    }
}

@media (max-width: 576px) {
    /* Smaller Form Elements */
    .form-control {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-select {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 15px;
    }
    
    .contact-form .form-group {
        margin-bottom: 15px;
    }
    
    /* Modal Forms */
    .modal-body {
        padding: 15px;
    }
    
    .modal-body .form-control {
        margin-bottom: 12px;
    }
    
    /* CAPTCHA */
    .captcha-numbers {
        font-size: 16px;
        padding: 8px 15px;
        min-width: 120px;
    }
    
    /* Form Buttons */
    .btn-form {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Mobile Quick Actions - Bottom Fixed Buttons */
.mobile-quick-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 9999 !important;
    display: flex;
    width: 100% !important;
}

/* Kaldırıldı - Artık gerekli değil */

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    height: 60px;
    flex: 1;
    border: none;
}

.quick-action-btn i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    opacity: 0.9;
}

.quick-action-btn:hover i {
    transform: scale(1.1);
}

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

.whatsapp-btn:hover {
    background: var(--secondary-color);
}

.phone-btn {
    background: var(--secondary-color);
}

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

/* Desktop WhatsApp Float - Hide on Mobile */
@media (max-width: 768px) {
    .whatsapp-float.desktop-only {
        display: none !important;
    }
    
    /* Adjust body padding for mobile quick actions and no top bar */
    body {
        padding-top: 80px !important; /* Sadece main header, top bar yok */
        padding-bottom: 85px;
    }
    
    /* Footer margin adjustment */
    .main-footer {
        margin-bottom: 85px;
    }
}

@media (min-width: 769px) {
    .mobile-quick-actions {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .main-footer {
        margin-bottom: 0;
    }
}

/* Hero Slider - Ürünler Sayfası Stili */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 350px;
    overflow: hidden; /* Scale efekti için overflow gizle */
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Carousel container için overflow kontrolü */
.hero-slider .carousel {
    overflow: hidden;
    width: 100% !important;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-slider .carousel-inner {
    overflow: hidden;
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-slide {
    width: 100% !important;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide[style*="background-image"] {
    background-blend-mode: overlay;
}

.carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Şık Carousel Fade Efekti - Profesyonel Geçiş */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

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

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Hero slide içeriği için smooth transition */
.carousel-fade .hero-slide {
    transition: opacity 0.8s ease-in-out;
}

/* Video wrapper için smooth geçiş */
.carousel-fade .hero-video-wrapper {
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item:not(.active) .hero-video-wrapper {
    opacity: 0;
}

.carousel-fade .carousel-item.active .hero-video-wrapper {
    opacity: 1;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-iframe,
.hero-video-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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


/* Modern Overlay - Subtle ve Elegant */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Modern Hero Content - Flexible Design */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Content Container - Sadece içerik varsa görünsün */
.hero-content:empty {
    display: none;
}

.hero-content:not(:has(*)) {
    display: none;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: white;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.6),
                 0 0 40px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1.5px;
    font-family: 'Poppins', sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 26px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.75;
    text-shadow: 1px 2px 12px rgba(0,0,0,0.5),
                 0 0 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease-out 0.2s both;
    max-width: 800px;
    font-weight: 400;
}

.btn-hero {
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 1.4s ease-out;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    color: white;
}

.btn-hero:hover span {
    color: white;
}

.btn-hero i {
    margin-left: 10px;
    transition: transform 0.4s;
    position: relative;
    z-index: 1;
}

.btn-hero:hover i {
    transform: translateX(8px);
}

/* Modern Carousel Controls - Minimal & Elegant */
.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 48px;
        height: 48px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

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

/* Modern Carousel Indicators - Minimal Design */
.hero-slider .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    gap: 10px;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.hero-slider .carousel-indicators button.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1);
    opacity: 1;
}

.hero-slider .carousel-indicators button:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-slider .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-slider .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider .carousel-indicators button.active {
        width: 24px;
    }
}

/* Sections */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: expandLine 0.8s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 25px;
}

.section-subtitle-small {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Cards */
.product-card,
.service-card,
.team-card,
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover,
.service-card:hover,
.team-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-card .card-img-top,
.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .card-img-top,
.blog-card:hover .card-img-top {
    transform: scale(1.1);
}

.team-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

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

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Team Modern */
.team-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

/* Yeni Team Card Tasarımı */
.team-card-new {
    background: white;
    border-radius: 20px 20px 12px 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* Resim Container */
.team-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.team-member-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-new:hover .team-member-image {
    transform: scale(1.05);
}

/* Sosyal Medya İkonları - Resmin sağ üstünde */
.team-social-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--team-primary-color, #004aad);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icon-btn:hover {
    background: var(--team-primary-color, #004aad);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
}

.social-icon-btn i {
    font-size: 16px;
}

/* İsim Bölümü - Açık Gri Arka Plan */
.team-name-section {
    background: #f5f5f5;
    padding: 18px 20px;
    border-radius: 12px 12px 0 0;
    flex-grow: 0;
    margin-top: -1px; /* Resimle birleşmesi için */
}

.team-member-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Rol Bölümü - Tema Ana Renk */
.team-role-section {
    background: var(--team-primary-color, #004aad);
    padding: 14px 20px;
    border-radius: 0 0 12px 12px;
    flex-grow: 0;
}

.team-member-role {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Eski stiller - geriye dönük uyumluluk için */
.team-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-modern:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9) 0%, rgba(0, 123, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card-modern:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.team-title {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.team-control {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0.9;
    transition: all 0.3s;
}

.team-control:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.team-control i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Modern Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Modern Testimonial Card */
.testimonial-card-modern {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08),
                0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card-modern:hover::before {
    transform: scaleX(1);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-quote-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FFD700;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-stars i {
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Testimonial Body */
.testimonial-body {
    flex: 1;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 60px;
    color: rgba(0, 74, 173, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card-modern:hover .testimonial-author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-name {
    color: var(--secondary-color);
}

.testimonial-company {
    font-size: 14px;
    color: #777;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-company i {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-card-modern {
    padding: 25px;
        margin-bottom: 20px;
}

    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .testimonial-author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-company {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0 !important;
    }
    
    .testimonial-card-modern {
        padding: 20px;
        border-radius: 15px;
    }
    
    .testimonial-header {
        margin-bottom: 20px;
    }
    
    .testimonial-body {
        margin-bottom: 20px;
    }
    
    .testimonial-footer {
        padding-top: 20px;
    }
}

/* Blog Modern */
.blog-section {
    background: #fff;
}

.blog-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    height: 250px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-modern:hover .blog-image {
    transform: scale(1.15);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.blog-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-view-count {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-view-count i {
    color: var(--primary-color);
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s;
}

.blog-view-all-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    gap: 12px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #999;
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.main-footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.main-footer p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    padding: 4px 0;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-menu i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-menu a:hover i {
    transform: translateX(2px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    padding: 4px 0;
}

.footer-contact li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    transform: translateX(4px);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact li a:hover i {
    transform: scale(1.1);
}

/* Footer Hours - 2'li Grid Tasarım */
.footer-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hours-item-grid:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hours-day-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hours-day-grid i {
    color: var(--primary-color);
    font-size: 12px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.hours-day-grid .day-name-grid {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.hours-time-grid {
    display: flex;
    align-items: center;
    margin-left: 22px;
}

.hours-time-grid .hours-time {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.hours-time-grid .hours-time.closed {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive - Mobilde tek sütun */
@media (max-width: 576px) {
    .footer-hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Eski footer-hours-modern (geriye uyumluluk için) */
.footer-hours-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours-modern .hours-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-hours-modern .hours-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-hours-modern .hours-item:hover {
    padding-left: 5px;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.hours-day i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.hours-day .day-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.hours-time-wrapper {
    display: flex;
    align-items: center;
    margin-left: 26px;
}

.hours-time-wrapper .hours-time {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.hours-time-wrapper .hours-time.closed {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Eski footer-hours (geriye uyumluluk için) */
.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
}

.footer-hours i {
    color: var(--primary-color);
    width: 18px;
}

.footer-hours .hours-time {
    margin-left: auto;
    font-weight: 600;
    color: #ccc;
}

.main-footer .social-links {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.main-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.main-footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 50px 0 30px;
}

.copyright {
    text-align: center;
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.design-by {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.design-by a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.design-by a:hover {
    color: var(--primary-color);
}

.design-by a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.design-by a:hover::after {
    width: 100%;
}

.footer-logo {
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slider {
        height: 350px;
        min-height: 300px;
        margin-top: 100px;
    }
    
    .page-header-title {
        font-size: clamp(36px, 6vw, 56px);
        margin-bottom: 25px;
    }
    
    .page-header-nav {
        gap: 10px;
    }
    
    .nav-link-page {
        font-size: 11px;
        padding: 8px 18px;
    }
}

@media (max-width: 991px) {
    section.hero-slider[style*="display"] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider #heroCarousel,
    section.hero-slider .carousel,
    section.hero-slider .carousel-inner,
    section.hero-slider .carousel-item,
    section.hero-slider .hero-slide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    .page-header-title {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .page-header-nav {
        gap: 10px;
    }
    
    .nav-link-page {
        font-size: 11px;
        padding: 8px 18px;
    }
    
    .hero-video-iframe,
    .hero-video-file {
        object-fit: cover;
    }
    
    .hero-content {
        padding: 0 25px;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(26px, 5.5vw, 36px) !important;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 22px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-hero {
        padding: 12px 28px;
        font-size: 14px;
        border-radius: 25px;
    }
}

@media (max-width: 576px) {
    section.hero-slider[style*="display"] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    section.hero-slider #heroCarousel,
    section.hero-slider .carousel,
    section.hero-slider .carousel-inner,
    section.hero-slider .carousel-item,
    section.hero-slider .hero-slide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        opacity: 0 !important;
        animation: none !important;
        pointer-events: none !important;
    }
    
    .page-header-title {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .page-header-nav {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-link-page {
        font-size: 10px;
        padding: 7px 14px;
    }
    
    .hero-video-iframe,
    .hero-video-file {
        object-fit: cover;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(22px, 4.5vw, 28px) !important;
        line-height: 1.1;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 13px !important;
        line-height: 1.4;
        margin-bottom: 18px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    /* Carousel controls için mobil optimizasyon */
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    /* Indicators için mobil optimizasyon */
    .carousel-indicators {
        bottom: 15px;
        margin-bottom: 0;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 3px;
    }
}
    
    .hero-slide {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 60px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .btn-hero {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .hero-slider .carousel-indicators {
        bottom: 20px;
    }
    
    /* Projects Grid Responsive */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Products Gallery Responsive */
    .products-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    /* Stats Responsive */
    .stat-value {
        font-size: 48px;
    }
    
    .stat-plus {
        font-size: 32px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    /* Header Contact Button Responsive */
    .btn-contact-header {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* Projects Controls Responsive */
    .projects-control {
        width: 40px;
        height: 40px;
    }
    
    .projects-control.prev {
        left: -15px;
    }
    
    .projects-control.next {
        right: -15px;
    }
    
    /* Team New Design Responsive */
    .team-card-new {
        margin-bottom: 30px;
    }
    
    .team-image-container {
        padding-top: 85%;
    }
    
    .team-social-icons {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .social-icon-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-btn i {
        font-size: 14px;
    }
    
    .team-name-section {
        padding: 15px 15px;
    }
    
    .team-member-name {
        font-size: 16px;
    }
    
    .team-role-section {
        padding: 12px 15px;
    }
    
    .team-member-role {
        font-size: 13px;
    }
    
    /* Team Controls Responsive */
    .team-control {
        width: 40px;
        height: 40px;
    }
    
    /* Footer Responsive */
    .main-footer .row > div {
        margin-bottom: 30px;
    }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle-small,
.why-choose-section .section-text {
    color: white;
}

/* About Section Modern */
.about-section {
    position: relative;
    padding: 80px 0;
}

/* About Section - İçerik Resme Göre Hizalı */
.about-section .row {
    min-height: 500px;
    align-items: stretch;
}

.about-section .col-lg-6 {
    display: flex;
    align-items: stretch;
}

/* Resim wrapper - tam yükseklik */
.about-section .about-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.about-section .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* İçerik wrapper - dikey ortalı ve şık hizalı */
.about-content-wrapper {
    padding: 40px 0 40px 40px;
    min-height: 100%;
}

@media (max-width: 991px) {
    .about-section .row {
        min-height: auto;
    }
    
    .about-section .col-lg-6 {
        margin-bottom: 30px;
    }
    
    .about-section .about-image-wrapper {
        height: auto;
        min-height: 400px;
    }
    
    .about-section .about-image-wrapper img {
        height: auto;
        min-height: 400px;
        object-fit: cover;
    }
    
    .about-content-wrapper {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .about-image-wrapper img {
        min-height: 300px;
    }
    
    .about-content-wrapper {
        padding: 15px 0;
    }
}

/* About Image Wrapper with Video Button */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Video Play Button */
.btn-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 0;
    text-align: center;
    animation: videoPulse 2s ease-in-out infinite;
}

.btn-video-play::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: videoRipple 2s ease-out infinite;
    opacity: 0;
}

.btn-video-play:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.6),
                0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: white;
}

.btn-video-play:active {
    transform: translate(-50%, -50%) scale(1.05);
}

.btn-video-play i {
    position: relative;
    z-index: 1;
    margin-left: 4px; /* Play icon'un ortalama kayması için */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.btn-video-play:hover i {
    transform: scale(1.1);
}

.video-play-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 16px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-video-play:hover .video-play-text {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}

/* Video Pulse Animation */
@keyframes videoPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4),
                    0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 24px rgba(255, 0, 0, 0.6),
                    0 4px 8px rgba(0, 0, 0, 0.25),
                    0 0 0 15px rgba(255, 0, 0, 0.1);
    }
}

@keyframes videoRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Video Modal Styles */
#aboutVideoModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#aboutVideoModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 15px 20px;
}

#aboutVideoModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#aboutVideoModal .modal-header .btn-close:hover {
    opacity: 1;
}

#aboutVideoModal .modal-body {
    background: #000;
    padding: 0;
}

#aboutVideoModal .ratio {
    background: #000;
}

#aboutVideoModal iframe {
    border: none;
}

/* Responsive Video Button */
@media (max-width: 768px) {
    .btn-video-play {
        width: 70px;
        height: 70px;
        font-size: 24px;
        border-width: 3px;
    }
    
    .btn-video-play i {
        font-size: 22px;
    }
    
    .video-play-text {
        font-size: 12px;
        padding: 5px 12px;
        bottom: -35px;
    }
    
    .btn-video-play:hover .video-play-text {
        bottom: -42px;
    }
    
    #aboutVideoModal .modal-dialog {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .btn-video-play {
        width: 60px;
        height: 60px;
        font-size: 20px;
        border-width: 2px;
    }
    
    .btn-video-play i {
        font-size: 18px;
    }
    
    .video-play-text {
        display: none; /* Mobilde text gizle */
    }
    
    #aboutVideoModal .modal-dialog {
        margin: 5px;
    }
}

.about-content {
    line-height: 1.8;
}

.contact-info-section {
    margin-top: 30px;
}

.support-line {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.support-line a {
    color: var(--primary-color);
    font-weight: 600;
}

.social-links-about {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-about .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-about .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Projects Section */
.projects-section {
    background: #fff;
}

.projects-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.projects-control {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0.9;
    transition: all 0.3s;
}

.projects-control:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.projects-control i {
    color: var(--primary-color);
    font-size: 20px;
}

.projects-control.prev {
    left: -25px;
}

.projects-control.next {
    right: -25px;
}

.project-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    height: 280px;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-image-wrapper img {
    transform: scale(1.15);
}

.project-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9) 0%, rgba(0, 123, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.project-item:hover .project-overlay-modern {
    opacity: 1;
}

.project-overlay-content-modern {
    text-align: center;
    padding: 20px;
    color: white;
}

.project-title-overlay {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.project-info {
    padding: 20px;
}

.project-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-title {
    margin-top: 10px;
    margin-bottom: 0;
}

.project-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.project-title a:hover {
    color: var(--primary-color);
}

/* Products Gallery Modern */
.products-gallery-section {
    background: #f8f9fa;
}

.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-image {
    transform: scale(1.15);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9) 0%, rgba(0, 123, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.product-overlay-content {
    text-align: center;
    padding: 20px;
    color: white;
}

.product-overlay-content .product-name {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-view-link {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    text-decoration: none;
}

.product-view-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.product-info {
    padding: 20px;
}

.product-title {
    margin: 0;
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary-color);
}

/* Services Modern */
.service-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-image-link {
    display: block;
    overflow: hidden;
    height: 200px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card-modern:hover .service-image {
    transform: scale(1.1);
}

/* Galeri resim kartı için overlay efekti */
.gallery-image-card .service-image-link,
.gallery-image-card .gallery-image-btn {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.gallery-image-card .gallery-image-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.3);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9), rgba(0, 123, 255, 0.9));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-image-card:hover .service-image-overlay {
    opacity: 1;
}

.service-overlay-content {
    color: white;
    font-size: 48px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-card:hover .service-overlay-content {
    transform: scale(1.1);
}

/* Galeri resim kartı - sadece görsel, minimal çerçeve */
.gallery-image-card {
    padding: 1px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: white;
    overflow: hidden;
}

.gallery-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18) !important;
    padding: 1px !important;
}

.gallery-image-card .gallery-image-btn {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 300px;
    display: block;
    position: relative;
}

.gallery-image-card .service-image {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-card:hover .service-image {
    transform: scale(1.05);
}

.gallery-image-card .service-content {
    display: none;
}

/* Watermark */
.gallery-watermark {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 5;
    pointer-events: none;
}

.watermark-text {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gallery-image-card:hover .watermark-text {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-watermark {
        bottom: 8px;
        right: 8px;
    }
    
    .watermark-text {
        padding: 5px 12px;
        font-size: 11px;
    }
}

/* Modal Watermark - Ortada */
.modal-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    pointer-events: none;
}

.modal-watermark-text {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: watermarkFadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes watermarkFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
    }
    to {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
}

#exampleImageModal .modal-body:hover .modal-watermark-text {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 768px) {
    .modal-watermark-text {
        padding: 10px 20px;
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* Modal Navigation Buttons */
.btn-gallery-nav {
    transition: all 0.3s ease !important;
}

.btn-gallery-nav:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.btn-gallery-nav:active {
    transform: translateY(-50%) scale(0.95) !important;
}

@media (max-width: 991px) {
    .gallery-image-card .gallery-image-btn {
        height: 250px;
    }
    
    .btn-gallery-nav {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    .btn-gallery-prev {
        left: 15px !important;
    }
    
    .btn-gallery-next {
        right: 15px !important;
    }
}

@media (max-width: 768px) {
    .gallery-image-card .gallery-image-btn {
        height: 220px;
    }
    
    .btn-gallery-nav {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* Galeri modal backdrop */
#exampleImageModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.95) !important;
    opacity: 1 !important;
}

#exampleImageModal.modal.show .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

/* Responsive modal */
@media (max-width: 768px) {
    #exampleImageModal .modal-body {
        padding: 60px 20px 40px !important;
    }
    
    #exampleImageModal .modal-header {
        padding: 15px 20px !important;
    }
    
    #exampleImageModal .modal-title {
        font-size: 16px !important;
    }
    
    #exampleImageModal .gallery-modal-image {
        max-width: 95% !important;
        max-height: 80vh !important;
    }
    
    #exampleImageModal #exampleImageModalDescription {
        font-size: 14px !important;
        bottom: 40px !important;
        max-width: 90% !important;
    }
}

.service-content {
    padding: 30px;
}

.service-title {
    margin-bottom: 15px;
}

.service-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s;
    line-height: 1.4;
}

.service-title a:hover {
    color: var(--primary-color);
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.service-detail-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 15px;
}

.service-detail-link:hover {
    color: var(--secondary-color);
    transform: translateX(8px);
    gap: 12px;
}

.service-detail-link i {
    transition: transform 0.3s;
}

.service-detail-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-item {
    padding: 30px;
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.stat-number {
    padding: 40px 20px;
}

.stat-value {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-plus {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 5px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 15px;
}

/* Utilities */
.bg-light {
    background-color: #f8f9fa !important;
}

.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.mb-5 {
    margin-bottom: 50px !important;
}

/* Google Maps Wrapper */
.google-maps-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-maps-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 90px;
    right: 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5),
                0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsappRipple 2s ease-out infinite;
    opacity: 0;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #0F7D6F 100%);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7),
                0 6px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float:active {
    transform: scale(1.05) translateY(0);
}

.whatsapp-float i {
    font-size: 36px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5),
                    0 4px 8px rgba(0, 0, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7),
                    0 4px 8px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 80px;
        right: 20px;
        font-size: 30px;
        border-width: 2px;
    }
    
    .whatsapp-float i {
        font-size: 32px;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-2px);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 75px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        font-size: 30px;
    }
}

/* Back to Top ile WhatsApp butonu arasında boşluk */
.back-to-top {
    bottom: 20px;
    right: 25px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 20px;
        z-index: 10000 !important;
    }
    
    .google-maps-wrapper {
        height: 350px;
    }
}

/* Contact Modal Styles */
#contactModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#contactModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 20px 25px;
}

#contactModal .modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
}

#contactModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

#contactModal .modal-header .btn-close:hover {
    opacity: 1;
}

#contactModal .modal-body {
    padding: 30px;
    background: #fff;
}

#contactModal .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#contactModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

#contactModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.15);
}

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

#contactModal .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

#contactModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

#contactModal .btn-secondary {
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#contactModal .btn-secondary:hover {
    transform: translateY(-2px);
}

/* reCAPTCHA in Modal */
#contactModal .g-recaptcha {
    margin-bottom: 10px;
}

#contactModal #modal-recaptcha-container {
    margin-bottom: 10px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    #contactModal .modal-dialog {
        margin: 10px;
    }
    
    #contactModal .modal-body {
        padding: 20px;
    }
    
    #contactModal .modal-header {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    #contactModal .modal-dialog {
        margin: 5px;
    }
    
    #contactModal .modal-body {
        padding: 15px;
    }
}

/* Page Header Hero - Koyu Arka Plan ve Büyük Başlık */
.page-header-hero {
    position: relative;
    height: 400px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 120px; /* Header yüksekliği için */
}

/* Arka plan görseli varsa */
.page-header-hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.page-header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" opacity="0.3"/><path d="M0 300 Q300 200 600 300 T1200 300" stroke="%23fff" stroke-width="2" fill="none" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-header-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.page-header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link-page {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

/* Normal link - Beyaz arka plan, koyu metin */
.nav-link-page:not(.active) {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link-page:not(.active):hover {
    background: #f8f9fa;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Aktif link - Tema rengi arka plan, beyaz metin */
.nav-link-page.active {
    background: var(--primary-color, #004aad);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    font-weight: 700;
}

.nav-link-page.active:hover {
    background: var(--primary-color, #004aad);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

/* About/Page Detail Section - Şık 2 Kolonlu Layout */
.about-page-detail,
.page-content-detail,
.blog-detail-page {
    background: white;
    padding: 80px 0;
}

/* Simple Page Content Section */
.page-content-section {
    background: white;
    padding: 60px 0;
}

.page-content-section .page-image-wrapper {
    margin-bottom: 0;
    max-width: 300px;
}

.page-content-section .page-image-wrapper img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-content-section .page-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.page-content-section .content-text {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.page-content-section .content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content-section .lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Mobilde görsel üste, içerik alta */
@media (max-width: 991px) {
    .page-content-section .row.align-items-start {
        flex-direction: column;
    }
    
    .page-content-section .col-lg-4,
    .page-content-section .col-lg-8 {
        width: 100%;
        max-width: 100%;
    }
}

.about-detail-title,
.page-detail-title,
.blog-detail-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-color, #004aad);
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    width: auto;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

/* Başlık altındaki dekoratif çizgi */
.about-detail-title::after,
.page-detail-title::after,
.blog-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color, #004aad);
    border-radius: 2px;
}

/* Başlık wrapper - sol tarafta başlık, sağ tarafta görsel ve içerik */
.about-page-detail .row,
.page-content-detail .row,
.blog-detail-page .row {
    align-items: flex-start;
    gap: 30px;
}

/* Sol kolon - sadece başlık */
.about-page-detail .col-lg-3,
.page-content-detail .col-lg-3,
.blog-detail-page .col-lg-3 {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

/* Sağ kolon - görsel ve içerik */
.about-page-detail .col-lg-9,
.page-content-detail .col-lg-9,
.blog-detail-page .col-lg-9 {
    padding-left: 0;
}

/* İç row - görsel ve metin yan yana */
.about-page-detail .col-lg-9 .row,
.page-content-detail .col-lg-9 .row,
.blog-detail-page .col-lg-9 .row {
    margin: 0;
    gap: 0;
}

@media (max-width: 991px) {
    .about-page-detail .col-lg-3,
    .page-content-detail .col-lg-3,
    .blog-detail-page .col-lg-3 {
        position: static;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-page-detail .col-lg-9,
    .page-content-detail .col-lg-9,
    .blog-detail-page .col-lg-9 {
        padding-left: 0;
    }
}

/* About Page Stylish Layout */
.about-page-detail {
    background: #ffffff;
}

.about-page-detail .container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
}

.about-page-detail .container-fluid .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
}

.about-page-detail .container-fluid .row > * {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.about-page-detail .container-fluid .row .col-lg-8 {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-left: 30px !important;
    margin-right: 0 !important;
}

.about-page-detail .row.align-items-center {
    align-items: center;
    min-height: 500px;
    margin: 0 !important;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.about-page-detail .row.align-items-center > * {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.about-page-detail .row .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%;
}

.about-page-detail .row .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667% !important;
    max-width: 66.66666667% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 30px !important;
    margin-right: 0 !important;
}

.about-detail-image-wrapper,
.page-detail-image-wrapper,
.blog-detail-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 12px;
    border: 2px solid rgba(0, 74, 173, 0.08);
}

.about-detail-image-wrapper:hover,
.page-detail-image-wrapper:hover,
.blog-detail-image-wrapper:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
                0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 74, 173, 0.15);
}

.about-detail-image,
.page-detail-image,
.blog-detail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
    object-fit: cover;
}

.about-detail-image-wrapper:hover .about-detail-image,
.page-detail-image-wrapper:hover .page-detail-image,
.blog-detail-image-wrapper:hover .blog-detail-image {
    transform: scale(1.03);
}

.about-detail-content,
.page-detail-content,
.blog-detail-content {
    font-size: 18px;
    line-height: 2.1;
    color: #555;
    font-family: 'Poppins', sans-serif;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0 !important;
    position: relative;
    width: 100% !important;
    box-sizing: border-box;
}

.about-detail-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.about-detail-content {
    padding-left: 25px !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.about-detail-content p,
.page-detail-content p,
.blog-detail-content p {
    margin-bottom: 28px;
    text-align: justify;
    color: #444;
    font-size: 18px;
    line-height: 2.1;
    letter-spacing: 0.2px;
    text-justify: inter-word;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    display: block;
}

.about-detail-content p:last-child,
.page-detail-content p:last-child,
.blog-detail-content p:last-child {
    margin-bottom: 0;
}

/* Responsive About Page */
@media (max-width: 992px) {
    .about-page-detail .row.align-items-center {
        min-height: auto;
    }
    
    .about-page-detail .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .about-page-detail {
        padding: 40px 0 !important;
    }
    
    .about-page-detail .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-page-detail .row.align-items-center {
        flex-direction: column;
        gap: 30px !important;
    }
    
    .about-detail-image-wrapper {
        padding: 8px;
        border-radius: 20px;
    }
    
    .about-detail-image {
        border-radius: 16px;
    }
    
    .about-detail-content {
        padding-left: 20px;
        padding-right: 15px;
    }
    
    .about-detail-content p {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 24px;
    }
}

.about-detail-content .lead,
.page-detail-content .lead,
.blog-detail-content .lead {
    font-size: 21px;
    font-weight: 400;
    color: #333;
    margin-bottom: 32px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}

.blog-meta-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.blog-meta-simple .blog-date {
    color: #666;
    font-size: 14px;
}

.blog-meta-simple .blog-date i {
    color: var(--primary-color);
    margin-right: 5px;
}

.page-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Blog Sidebar Styles */
.blog-sidebar-section {
    background: #f8f9fa;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.recent-blogs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-blogs li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.recent-blogs li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-blogs li:hover {
    padding-left: 10px;
}

.recent-blogs a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
    line-height: 1.5;
}

.recent-blogs a:hover {
    color: var(--primary-color);
}

.blog-date-small {
    font-size: 13px;
    color: #999;
    display: block;
}

.blog-date-small i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .page-header-hero {
        height: 350px;
        min-height: 300px;
        margin-top: 100px;
    }
    
    .page-header-title {
        font-size: clamp(36px, 6vw, 56px);
        margin-bottom: 25px;
    }
    
    .page-header-nav {
        gap: 10px;
    }
    
    .nav-link-page {
        font-size: 11px;
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .page-header-hero {
        height: 300px;
        min-height: 280px;
        margin-top: 80px;
    }
    
    .page-header-title {
        font-size: clamp(28px, 5vw, 42px);
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .about-detail-title,
    .page-detail-title,
    .blog-detail-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-detail-title::after,
    .page-detail-title::after,
    .blog-detail-title::after {
        width: 60px;
        height: 3px;
    }
    
    .about-page-detail,
    .page-content-detail,
    .blog-detail-page {
        padding: 60px 0;
    }
    
    .about-page-detail .col-lg-3,
    .page-content-detail .col-lg-3,
    .blog-detail-page .col-lg-3 {
        padding-right: 20px;
    }
    
    .about-detail-image-wrapper,
    .page-detail-image-wrapper,
    .blog-detail-image-wrapper {
        margin-bottom: 0;
    }
    
    .about-detail-content,
    .page-detail-content,
    .blog-detail-content {
        font-size: 17px;
        line-height: 1.9;
    }
    
    .about-detail-content p,
    .page-detail-content p,
    .blog-detail-content p {
        font-size: 17px;
        margin-bottom: 24px;
        text-align: left;
        line-height: 1.9;
    }
    
    .about-detail-content .lead,
    .page-detail-content .lead,
    .blog-detail-content .lead {
        font-size: 17px;
        margin-bottom: 22px;
    }
}

@media (max-width: 576px) {
    .page-header-hero {
        height: 250px;
        min-height: 250px;
        margin-top: 70px;
    }
    
    .page-header-title {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .page-header-nav {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-link-page {
        font-size: 10px;
        padding: 7px 14px;
    }
}

/* Modern Blog List Cards */
.blog-list-page {
    background: #f8f9fa;
}

.blog-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.blog-card-modern:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.8), rgba(255, 87, 34, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-overlay i {
    color: white;
    font-size: 32px;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 15px;
}

.blog-card-date {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i {
    font-size: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.blog-card-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

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

.blog-card-link i {
    font-size: 12px;
}

/* Modern Service Cards */
.services-list-page {
    background: white;
}

.service-card-modern {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card-icon i {
    font-size: 36px;
    color: white;
}

.service-card-modern:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-card-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.service-card-hover-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 74, 173, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-card-hover-effect {
    opacity: 1;
}

/* Modern Product Cards */
.products-list-page {
    background: #f8f9fa;
}

.product-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.product-card-modern:hover .product-card-image {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.85), rgba(255, 87, 34, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-card-overlay {
    opacity: 1;
}

.product-card-view {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.product-card-view:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.product-card-body {
    padding: 25px;
    flex: 1;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.product-card-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    margin: 0;
}

/* Contact Page Modern Styles */
.contact-page {
    background: #f8f9fa;
}

.contact-form-card,
.contact-info-card,
.map-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-card:hover,
.contact-info-card:hover,
.map-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.contact-form-card .card-body {
    padding: 40px;
}

.contact-info-card .card-body {
    padding: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Telefon öğeleri için özel stil */
.contact-item:has(.fa-phone),
.contact-item:has(.fa-mobile-alt),
.contact-item:has(.fa-phone-square-alt) {
    background: rgba(0, 74, 173, 0.05);
    border-left: 4px solid var(--primary-color);
}

.contact-item:has(.fa-phone):hover,
.contact-item:has(.fa-mobile-alt):hover,
.contact-item:has(.fa-phone-square-alt):hover {
    background: rgba(0, 74, 173, 0.1);
    border-left-color: var(--secondary-color);
}

/* Contact Page Social Links */
.contact-page .social-links,
.contact-info-card .social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.contact-page .social-links a,
.contact-info-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.contact-page .social-links a:hover,
.contact-info-card .social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

/* Contact Map Section - Full Width */
.contact-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper-full {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #666;
    padding: 60px 20px;
}

.contact-map-placeholder i {
    color: var(--primary-color);
    opacity: 0.6;
}

/* Responsive Contact Map */
@media (max-width: 768px) {
    .contact-map-wrapper-full {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-map-wrapper-full {
        height: 350px;
    }
    
    .contact-map-placeholder {
        padding: 40px 15px;
    }
    
    .contact-map-placeholder i {
        font-size: 2rem !important;
    }
}

/* Responsive Updates */
@media (max-width: 991px) {
    .blog-card-body,
    .product-card-body {
        padding: 20px;
    }
    
    .service-card-modern {
        padding: 30px 25px;
    }
    
    .contact-form-card .card-body,
    .contact-info-card .card-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .blog-card-image-wrapper,
    .product-card-image-wrapper {
        height: 200px;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-icon i {
        font-size: 30px;
    }
}

/* Page Header Banner - Header Altı Görsel Bölümü */
.page-header-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

.header-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 450px;
    min-height: 300px;
    object-position: center;
    transition: transform 0.5s ease;
}

.page-header-banner:hover .header-banner-image {
    transform: scale(1.02);
}

/* Responsive Banner */
@media (max-width: 991px) {
    .header-banner-image {
        max-height: 350px;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .header-banner-image {
        max-height: 280px;
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .header-banner-image {
        max-height: 220px;
        min-height: 180px;
    }
}

/* CAPTCHA - Rastgele Rakam Doğrulaması */
.captcha-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.captcha-numbers {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    padding: 10px 20px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    min-width: 150px;
    text-align: center;
}

.captcha-refresh {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.captcha-refresh i {
    transition: transform 0.3s ease;
}

.captcha-refresh:hover i {
    transform: rotate(180deg);
}

#captcha_answer {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

#captcha_answer:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 74, 173, 0.25);
}

/* Responsive CAPTCHA */
@media (max-width: 576px) {
    .captcha-numbers {
        font-size: 20px;
        padding: 8px 15px;
        min-width: 120px;
    }
    
    .captcha-refresh {
        width: 36px;
        height: 36px;
    }
}

/* ========================================
   GALLERY PAGES STYLES
   ======================================== */

.gallery-page-section {
    background: #f8f9fa;
    min-height: 60vh;
}

/* Gallery Filters */
.gallery-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

/* Image Gallery Card */
.gallery-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    background: #f5f5f5;
}

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

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-image-overlay {
    opacity: 1;
}

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

.gallery-image-overlay-content i {
    margin-bottom: 0.5rem;
}

.gallery-image-caption {
    padding: 1rem;
    flex-grow: 1;
}

.gallery-image-caption h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.gallery-image-caption small {
    font-size: 0.85rem;
}

/* Video Gallery Card */
.gallery-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.gallery-video-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    background: #1a1a1a;
}

.gallery-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-video-wrapper:hover .gallery-video-thumbnail {
    transform: scale(1.1);
}

.gallery-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    background: #f5f5f5;
}

.gallery-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-video-wrapper:hover .gallery-video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    color: white;
    font-size: 80px;
    transition: all 0.3s ease;
}

.gallery-video-wrapper:hover .play-button {
    transform: scale(1.1);
    color: var(--primary-color);
}

.gallery-video-caption {
    padding: 1.25rem;
    flex-grow: 1;
}

.gallery-video-caption h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.gallery-video-caption small {
    font-size: 0.9rem;
    color: #666;
}

.gallery-video-caption p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Gallery Modal - Fullscreen Minimal */
#imageModal .modal-dialog {
    margin: 0;
    max-width: 100%;
}

#imageModal .modal-content.gallery-fullscreen-modal {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 0;
    height: 100vh;
}

#imageModal.modal.show .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

#imageModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 1;
}

#imageModal .modal-body {
    position: relative;
    padding: 0;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

#imageModal .modal-body img.gallery-modal-image {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.4s ease;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-modal-image:hover {
    opacity: 0.95;
}

/* Gallery Navigation Buttons - Large Side Arrows */
.btn-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn-gallery-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.btn-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.btn-gallery-prev {
    left: 0;
}

.btn-gallery-next {
    right: 0;
}

/* Close Button - Top Right */
.btn-gallery-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 20;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn-gallery-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.btn-gallery-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Image Counter - Bottom Center */
.gallery-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 15;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal .modal-body > .ratio {
    margin: 0;
}

#videoModal .modal-body p {
    padding: 1rem;
    margin: 0;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-image-wrapper,
    .gallery-video-wrapper {
        height: 220px;
    }
    
    .play-button {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .gallery-filters {
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-image-wrapper,
    .gallery-video-wrapper {
        height: 200px;
    }
    
    .play-button {
        font-size: 50px;
    }
    
    .gallery-video-caption h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-image-card,
    .gallery-video-card {
        margin-bottom: 1rem;
    }
    
    .gallery-image-wrapper,
    .gallery-video-wrapper {
        height: 180px;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
    
    .play-button {
        font-size: 40px;
    }
    
    /* Gallery Navigation Buttons - Mobile */
    .btn-gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .btn-gallery-prev {
        left: 0;
    }
    
    .btn-gallery-next {
        right: 0;
    }
    
    .gallery-image-container {
        padding: 60px 60px 100px;
    }
    
    #imageModal .modal-body img.gallery-modal-image {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .btn-gallery-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gallery-counter {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========================================
   REFERENCES SECTION - HORIZONTAL SCROLL
   ======================================== */

.references-section-modern {
    background: #ffffff;
    padding: 60px 0;
}

.references-scroll-wrapper-modern {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    position: relative;
}

.references-scroll-wrapper-modern::-webkit-scrollbar {
    height: 8px;
}

.references-scroll-wrapper-modern::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.references-scroll-wrapper-modern::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.references-scroll-wrapper-modern::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color, #0056b3);
}

.references-scroll-container-modern {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding: 10px 0;
}

.reference-logo-item-modern {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
}

.reference-logo-wrapper-modern {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reference-logo-card-modern {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.reference-logo-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.reference-logo-wrapper-modern:hover .reference-logo-card-modern::before {
    left: 100%;
}

.reference-logo-wrapper-modern:hover .reference-logo-card-modern {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.reference-logo-image-modern {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
    opacity: 0.7;
}

.reference-logo-wrapper-modern:hover .reference-logo-image-modern {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Responsive References - Horizontal Scroll */
@media (max-width: 992px) {
    .references-section-modern {
        padding: 50px 0;
    }
    
    .references-scroll-container-modern {
        gap: 25px;
    }
    
    .reference-logo-item-modern {
        width: 180px;
        height: 130px;
    }
    
    .reference-logo-card-modern {
        padding: 20px 15px;
    }
    
    .reference-logo-image-modern {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .references-section-modern {
        padding: 40px 0;
    }
    
    .references-scroll-wrapper-modern {
        padding: 15px 0;
    }
    
    .references-scroll-container-modern {
        gap: 20px;
    }
    
    .reference-logo-item-modern {
        width: 160px;
        height: 120px;
    }
    
    .reference-logo-card-modern {
        padding: 18px 15px;
    }
    
    .reference-logo-image-modern {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .references-section-modern {
        padding: 30px 0;
    }
    
    .references-scroll-wrapper-modern {
        padding: 10px 0;
    }
    
    .references-scroll-wrapper-modern::-webkit-scrollbar {
        height: 6px;
    }
    
    .references-scroll-container-modern {
        gap: 15px;
    }
    
    .reference-logo-item-modern {
        width: 140px;
        height: 110px;
    }
    
    .reference-logo-card-modern {
        padding: 15px 12px;
        border-radius: 8px;
    }
    
    .reference-logo-image-modern {
        max-height: 50px;
    }
}

/* ========================================
   TESTIMONIALS CAROUSEL STYLES
   ======================================== */

.testimonials-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.testimonials-carousel-wrapper .carousel {
    padding: 0 50px;
}

.testimonials-carousel-wrapper .carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.testimonials-carousel-wrapper .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 74, 173, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-carousel-wrapper .carousel-indicators button.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 15px;
}

.testimonials-carousel-wrapper .carousel-control-prev,
.testimonials-carousel-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

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

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

.testimonials-carousel-wrapper .carousel-control-prev:hover,
.testimonials-carousel-wrapper .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background-color: var(--secondary-color);
}

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

.testimonials-carousel-wrapper .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper .carousel {
        padding: 0 40px;
    }
    
    .testimonials-carousel-wrapper .carousel-control-prev,
    .testimonials-carousel-wrapper .carousel-control-next {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}


