/**
 * Medikal Web Sitesi - Modern Profesyonel Tasarım
 * Renkler: rgb(149,213,205) ve rgb(21,214,191)
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: rgb(149,213,205);
    --secondary-color: rgb(21,214,191);
    --primary-dark: #0fa89a;
    --secondary-dark: #0d8a7c;
    --dark-color: #0d1b2a;
    --dark-blue: #1b263b;
    --light-color: #f8f9fa;
    --light-bg: #fafbfc;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-medium: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e8ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --gradient-primary: linear-gradient(135deg, rgba(149,213,205,1) 0%, rgba(21,214,191,1) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(27,38,59,0.75) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--white);
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Top Bar */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    --top-bar-height: 40px;
}

.top-bar-content {
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-link {
    color: var(--white) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dark-mode-toggle-top {
    color: var(--white) !important;
    padding: 0.25rem 0.5rem;
    border: none;
    background: transparent;
}

.dark-mode-toggle-top:hover {
    opacity: 0.8;
}

.language-selector-wrapper {
    display: inline-block;
}

#google_translate_element {
    display: inline-block;
}

/* Google Translate Dropdown Stil Düzenlemesi */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Google Translate Select Stil */
.goog-te-gadget {
    color: rgba(255,255,255,0.9) !important;
    font-family: 'Poppins', 'Inter', sans-serif !important;
    font-size: 0.875rem !important;
}

.goog-te-gadget-simple {
    background-color: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 20px !important;
    padding: 4px 12px !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.875rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.goog-te-gadget-simple:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px) translateZ(0) !important;
    box-shadow: 0 4px 12px rgba(21,214,191,0.3) !important;
}

.goog-te-gadget-simple .goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple .goog-te-gadget-simple-text {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.goog-te-gadget-simple .goog-te-gadget-simple-text::after {
    content: ' ▼' !important;
    font-size: 0.7rem !important;
    opacity: 0.7 !important;
}

/* Google Translate Dropdown Menu */
.goog-te-menu-value {
    color: rgba(255,255,255,0.9) !important;
}

.goog-te-menu-value span {
    color: rgba(255,255,255,0.9) !important;
}

/* Dropdown açıldığında */
.goog-te-menu-frame {
    margin-top: 5px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
    border: 1px solid var(--border-color) !important;
}

.goog-te-menu2 {
    background: var(--white) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
}

.goog-te-menu2-item {
    padding: 10px 20px !important;
    color: var(--text-medium) !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.goog-te-menu2-item:hover {
    background: linear-gradient(90deg, rgba(149,213,205,0.1), rgba(21,214,191,0.1)) !important;
    color: var(--secondary-dark) !important;
}

.goog-te-menu2-item-selected {
    background: linear-gradient(90deg, rgba(149,213,205,0.15), rgba(21,214,191,0.15)) !important;
    color: var(--secondary-dark) !important;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}

.navbar.scrolled {
    top: 0;
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-blue) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    height: auto;
}

.navbar-brand:hover {
    transform: scale(1.02) translateZ(0);
    opacity: 0.9;
}

.logo-img {
    height: 58px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.navbar.scrolled .logo-img {
    height: 48px;
    max-width: 170px;
}

.logo-text {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-left: 12px;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 1.2rem;
    }
}

.navbar-nav {
    position: relative;
    z-index: 1021;
}

.navbar-nav .nav-link {
    color: var(--text-medium) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.625rem 1rem !important;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-1px) translateZ(0);
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateZ(0);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 8px rgba(21,214,191,0.3);
    will-change: width;
    backface-visibility: hidden;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    margin-top: 0;
    padding: 0.75rem 0;
    background: var(--white);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) translateZ(0);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1030;
    margin-top: 5px;
}

/* Dropdown ile nav-item arasındaki boşluğu kapat */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 1029;
    pointer-events: none;
}

/* Dropdown görünürlük - CSS hover */
.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) translateZ(0) !important;
    pointer-events: all !important;
}

/* Dropdown toggle hover durumunda da göster */
.nav-item.dropdown:hover .dropdown-toggle + .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) translateZ(0) !important;
    pointer-events: all !important;
}

.dropdown-item {
    padding: 0.875rem 1.75rem;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    color: var(--text-medium);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown-item i {
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(149,213,205,0.1), rgba(21,214,191,0.1));
    color: var(--secondary-dark);
    padding-left: 2.25rem;
    transform: translateX(3px) translateZ(0);
}

.dropdown-item:hover i {
    opacity: 1;
    color: var(--secondary-color);
    transform: scale(1.1);
}

.dropdown-item:hover::before {
    width: 4px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1022;
    min-width: 44px;
    min-height: 44px;
}

.navbar-toggler:hover {
    background: rgba(21,214,191,0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(21,214,191,0.25);
    outline: none;
}

/* Bootstrap'ın d-lg-none class'ı ile çalışacak şekilde */
.navbar-toggler.d-lg-none {
    display: flex;
    align-items: center;
    justify-content: center;
}

.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(26, 26, 46, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
    transition: all 0.3s ease;
}

/* Offcanvas - Genel Stiller (Her zaman aktif) */
.offcanvas {
    background: var(--white);
    border-left: none;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    width: 85vw !important;
    max-width: 400px;
    z-index: 1045;
}

.offcanvas-backdrop {
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
}

/* Offcanvas stilleri - Sadece mobil için */
@media (max-width: 992px) {
    .offcanvas-header {
        border-bottom: 2px solid var(--border-color);
        padding: 1.5rem 1.5rem 1.25rem;
        background: linear-gradient(135deg, rgba(149,213,205,0.08) 0%, rgba(21,214,191,0.08) 100%);
        position: relative;
        overflow: hidden;
    }

    .offcanvas-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-primary);
    }

    .offcanvas-title-wrapper {
        flex: 1;
    }

    .offcanvas-title {
        margin: 0 0 0.25rem 0;
        font-weight: 600;
        color: var(--dark-blue);
        display: flex;
        align-items: center;
        font-size: 1.125rem;
    }

    .offcanvas-subtitle {
        margin: 0;
        font-size: 0.75rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

    .offcanvas-logo {
        height: 42px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    }

    .btn-close-custom {
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        background: rgba(21,214,191,0.1);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .btn-close-custom i {
        font-size: 1.25rem;
        color: var(--text-dark);
        transition: transform 0.3s ease;
    }

    .btn-close-custom:hover {
        background: var(--secondary-color);
        transform: rotate(90deg) scale(1.1);
    }

    .btn-close-custom:hover i {
        color: var(--white);
    }

    .offcanvas-body {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    .offcanvas-body::-webkit-scrollbar {
        width: 6px;
    }

    .offcanvas-body::-webkit-scrollbar-track {
        background: transparent;
    }

    .offcanvas-body::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 3px;
    }

    .offcanvas-body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }

    /* Mobile Navigation List */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        padding: 1.125rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-link i:first-child {
        font-size: 1.25rem;
        color: var(--secondary-color);
        width: 24px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link span {
        flex: 1;
        margin-left: 0.5rem;
    }
    
    .mobile-nav-link .dropdown-arrow {
        font-size: 0.875rem;
        color: var(--text-light);
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .mobile-nav-link:hover {
        background: linear-gradient(90deg, rgba(149,213,205,0.1) 0%, rgba(21,214,191,0.1) 100%);
        color: var(--secondary-color);
        padding-left: 2rem;
    }
    
    .mobile-nav-link:hover i:first-child {
        transform: scale(1.15);
        color: var(--secondary-color);
    }
    
    .mobile-nav-link.active {
        background: linear-gradient(90deg, rgba(149,213,205,0.15) 0%, rgba(21,214,191,0.15) 100%);
        color: var(--secondary-color);
        font-weight: 600;
        padding-left: calc(1.5rem - 4px);
        position: relative;
    }
    
    .mobile-nav-link.active::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--gradient-primary);
        box-shadow: 0 0 12px rgba(21,214,191,0.4);
        z-index: 1;
    }
    
    .mobile-nav-link.active i:first-child {
        color: var(--secondary-color);
    }
    
    /* Dropdown açıldığında ok döner */
    .mobile-nav-link[aria-expanded="true"] .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--secondary-color);
    }
    
    .mobile-nav-link.dropdown-toggle,
    .mobile-dropdown-toggle {
        cursor: pointer;
    }
    
    /* Mobile Dropdown Menu - Bootstrap override */
    .mobile-dropdown-menu {
        background: rgba(21,214,191,0.05) !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease !important;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .mobile-dropdown-menu.show {
        max-height: 1000px !important;
        padding: 0.5rem 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-dropdown-item {
        display: flex;
        align-items: center;
        padding: 0.875rem 1.5rem 0.875rem 3.75rem;
        color: var(--text-medium);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-bottom: 1px solid rgba(21,214,191,0.1);
    }
    
    .mobile-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown-item i {
        font-size: 1rem;
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .mobile-dropdown-item span {
        margin-left: 0.75rem;
    }
    
    .mobile-dropdown-item:hover {
        background: rgba(21,214,191,0.12);
        color: var(--secondary-color);
        padding-left: 4.25rem;
    }
    
    .mobile-dropdown-item:hover i {
        opacity: 1;
        transform: scale(1.1);
    }
    
    /* Mobile Nav Actions */
    .mobile-nav-actions {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        background: rgba(21,214,191,0.03);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mobile-nav-action-item {
        display: flex;
        align-items: center;
    }
    
    .mobile-dark-mode-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.75rem;
        color: var(--text-dark);
        text-decoration: none;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: var(--white);
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .mobile-dark-mode-toggle:hover {
        background: rgba(21,214,191,0.1);
        border-color: var(--secondary-color);
        color: var(--secondary-color);
    }
    
    .mobile-dark-mode-toggle i {
        font-size: 1.125rem;
        color: var(--secondary-color);
    }
    
    .language-selector-wrapper-mobile {
        width: 100%;
    }
    
    .language-selector-wrapper-mobile #google_translate_element_mobile {
        width: 100%;
    }
    
    /* Mobile Nav Footer */
    .mobile-nav-footer {
        margin-top: auto;
        padding: 1.5rem;
        border-top: 2px solid var(--border-color);
        background: linear-gradient(135deg, rgba(149,213,205,0.03) 0%, rgba(21,214,191,0.03) 100%);
        flex-shrink: 0;
    }
    
    .mobile-nav-contact {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .mobile-nav-contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: var(--white);
        border-radius: 8px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.875rem;
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
    }
    
    .mobile-nav-contact-item i {
        font-size: 1.125rem;
        color: var(--secondary-color);
        width: 24px;
        text-align: center;
    }
    
    .mobile-nav-contact-item:hover {
        background: rgba(21,214,191,0.1);
        border-color: var(--secondary-color);
        transform: translateX(4px);
        color: var(--secondary-color);
    }
    
    .mobile-nav-social {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .mobile-nav-social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        color: var(--text-medium);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 1.125rem;
    }
    
    .mobile-nav-social-link:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--white);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 4px 12px rgba(21,214,191,0.3);
    }
}

/* Navbar Spacer - Sticky için gerekli değil ama ilk yüklemede boşluk için */
.navbar-spacer {
    height: 0;
    transition: height 0.3s ease;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    left: 0;
    right: 0;
}

.hero-slider .owl-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-slider .owl-stage-outer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider .owl-stage {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    margin: 0;
    padding: 0;
}

.hero-slider .owl-item {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.slider-item {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    margin: 0;
    padding: 0;
}

.slider-item picture {
    display: block;
    width: 100%;
    height: auto;
}

.slider-item picture img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,27,42,0.15) 0%, rgba(27,38,59,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
    display: none; /* Varsayılan olarak gizli (mobil için) */
}

@media (min-width: 992px) {
    .slider-nav {
        display: block; /* PC'de göster */
    }
}

.slider-nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-nav-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 5px 20px rgba(21,214,191,0.5);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .next-btn {
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.slider-dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: block; /* Varsayılan olarak göster (mobil için) */
}

@media (min-width: 992px) {
    .slider-dots-container {
        display: none !important; /* PC'de gizle */
    }
}

/* Slider Dots - Sadece hero slider için */
.hero-slider .owl-dots,
.slider-dots-container .owl-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-slider .owl-dot,
.slider-dots-container .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4) !important;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    margin: 0 5px;
}

.hero-slider .owl-dot.active,
.slider-dots-container .owl-dot.active {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(21,214,191,0.6);
}

/* Hero Section (Fallback) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Section Styles */
.section {
    padding: 20px 0;
    position: relative;
}

.section.bg-light {
    background: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(149,213,205,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(21,214,191,0.03) 0%, transparent 50%);
}

/* Typography - Tutarlı Başlık Stilleri */
h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title.text-start {
    text-align: left;
}

.section-title.text-start::after,
.section-title.text-start::before {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(21,214,191,0.4);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--border-color);
}

/* Button Styles */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(21,214,191,0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 24px rgba(21,214,191,0.4);
    color: #fff;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(4px) translateZ(0);
}

/* Card Styles - Standartlaştırılmış */
.card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: var(--white);
    height: 100%;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21,214,191,0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-header {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 2.5rem 2rem;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.card:hover .card-header::before {
    transform: scale(1.2);
}

.card-header i {
    font-size: 1.75rem;
    margin-right: 0.75rem;
    opacity: 0.95;
}

.card-body {
    padding: 2rem 1.75rem;
}

.card-body.p-4 {
    padding: 2rem !important;
}

.card-body.p-3 {
    padding: 1.5rem !important;
}

.card-text {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Feature Box Styles */
.feature-box {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-box:hover {
    transform: translateY(-8px) translateZ(0);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(21,214,191,0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feature-box:hover .feature-icon::before {
    width: 200px;
    height: 200px;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg) translateZ(0);
    box-shadow: 0 12px 32px rgba(21,214,191,0.35);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-box h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: #fff;
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05) translateZ(0);
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) translateZ(0);
}

/* Genel Link Stilleri - Kurumsal Renkler */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a:focus {
    color: var(--secondary-color);
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Mailto ve Tel Linkleri */
a[href^="mailto:"],
a[href^="tel:"] {
    color: var(--secondary-color);
    font-weight: 500;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* İkon Renkleri - Kurumsal Uyum */
.bi.text-primary,
i.text-primary {
    color: var(--secondary-color) !important;
}

.bi.text-success,
i.text-success {
    color: var(--secondary-color) !important;
}

/* Check icon'lar için özel stil */
.bi-check-circle-fill.text-success {
    color: var(--secondary-color) !important;
}

/* Outline Butonlar - Kurumsal Renkler */
.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-success {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-info {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-info:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* İletişim Sayfası Özel Stiller */
.contact-info-item a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Breadcrumb Linkleri */
.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Card Linkleri */
.card a:not(.btn) {
    color: var(--secondary-color);
}

.card a:not(.btn):hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Text Decoration None Linkler */
a.text-decoration-none {
    color: var(--secondary-color);
}

a.text-decoration-none:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}

/* Badge Renkleri - Kurumsal Uyum */
.badge.bg-primary {
    background-color: var(--secondary-color) !important;
    color: #fff;
}

.badge.bg-info {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.badge.bg-secondary {
    background-color: var(--text-medium) !important;
    color: #fff;
}

.badge.bg-light {
    background-color: var(--light-bg) !important;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

/* Responsive - Tablet ve Mobil */
@media (max-width: 992px) {
    .top-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }
    
    .top-bar-left {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .top-bar-link {
        font-size: 0.75rem;
    }
    
    .top-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }
    
    .top-bar-content {
        flex-wrap: nowrap;
    }
    
    .top-bar-left {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .top-bar-right-mobile {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    .top-bar-link {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .top-bar-link i {
        font-size: 0.8rem;
    }
    
    .navbar {
        top: 36px !important;
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        top: 0 !important;
        padding: 0.625rem 0;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Desktop - Sadece büyük ekranlar için */
@media (min-width: 993px) {
    .navbar-toggler {
        display: none !important;
    }
    
    /* Desktop menü stilleri */
    .navbar-nav .nav-link::after {
        display: block;
    }
    
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .navbar-collapse {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    /* Mobil için temel font ayarları - daha minimal */
    body {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Mobil menü açıkken body scroll engelle */
    html.menu-open {
        overflow: hidden;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    h1, .h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    h5, .h5 {
        font-size: 1.125rem;
        line-height: 1.4;
        margin-bottom: 0.625rem;
    }
    
    h6, .h6 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }
    
    
    .goog-te-gadget-simple {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .logo-text {
        display: none !important;
    }
    
    .logo-img {
        height: 45px !important;
        max-width: 140px !important;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px !important;
        max-width: 120px !important;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .feature-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-box p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* Offcanvas Mobil Stilleri */
    .offcanvas {
        width: 85vw !important;
        max-width: 400px;
    }
    
    .offcanvas-header {
        padding: 1.25rem 1.25rem 1rem;
    }
    
    .offcanvas-logo {
        height: 38px;
        max-width: 160px;
    }
    
    .offcanvas-subtitle {
        font-size: 0.7rem;
    }
    
    .btn-close-custom {
        width: 36px;
        height: 36px;
    }
    
    .btn-close-custom i {
        font-size: 1.125rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav-link i:first-child {
        font-size: 1.125rem;
        width: 22px;
    }
    
    .mobile-nav-subitem {
        padding: 0.75rem 1.25rem 0.75rem 3.5rem;
        font-size: 0.875rem;
    }
    
    .mobile-nav-subitem i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .mobile-nav-footer {
        padding: 1.25rem;
    }
    
    .mobile-nav-contact-item {
        padding: 0.625rem;
        font-size: 0.8rem;
    }
    
    .mobile-nav-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        min-width: 44px;
        min-height: 44px;
        order: 2;
        margin-left: auto;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(21,214,191,0.25);
        outline: none;
    }
    
    .slider-item {
        height: 400px;
    }
    
    /* Container padding mobil - sadece mobil için */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .card-header {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
    }
    
    .card-body {
        padding: 1.5rem 1rem;
    }
    
    .card-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .btn-primary-custom {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    /* Çok küçük ekranlar için ek optimizasyonlar */
    .language-selector-wrapper {
        margin-right: 5px;
    }
    
    .goog-te-gadget-simple {
        padding: 3px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .navbar {
        padding: 0.875rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.625rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        min-width: 100%;
    }
    
    .dropdown-item {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
    
    .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .card-header i {
        font-size: 1.25rem;
    }
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
    margin-top: 0;
    position: relative;
}

.breadcrumb-nav {
    margin: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--text-light);
    padding: 0 0.75rem;
    font-weight: normal;
}

/* Product Card Styles */
.product-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-bg);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: translateZ(0) scale(1.08);
}

/* Category Card Styles */
.category-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: var(--shadow-xl);
}

.category-card .card-header {
    font-size: 1.375rem;
    padding: 2.5rem 2rem;
}

.category-card .card-body {
    padding: 2rem;
}

/* Product List Styles */
.product-list-empty {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--light-bg);
    border-radius: 20px;
}

/* Product Detail Styles */
.product-detail-images {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.main-product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.main-product-image img:hover {
    transform: scale(1.02) translateZ(0);
}

.product-thumbnails {
    flex-wrap: wrap;
}

.thumbnail-wrapper {
    transition: all 0.3s ease;
}

.thumbnail-wrapper:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: var(--shadow-md);
}

.product-detail-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.product-attributes {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
}

.attribute-item {
    margin-bottom: 1rem;
}

.attribute-item strong {
    color: var(--dark-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.attribute-values .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem 0;
}

.product-variants .badge {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

.product-actions {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .product-detail-info h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .product-detail-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .product-detail-images {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 1.5rem;
    }
    
    .product-attributes {
        padding: 1.25rem;
    }
    
    .attribute-item {
        margin-bottom: 0.75rem;
    }
    
    .attribute-item strong {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    .attribute-values .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.65rem;
    }
    
    .product-variants .badge {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .breadcrumb-wrapper {
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.4rem;
    }
    
    /* Desktop dropdown ok ikonu kaldırıldı */
    .dropdown-toggle::after {
        display: none !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Category Section Styles */
.category-section {
    padding: 2rem 0;
}

.category-section h2 {
    color: var(--dark-blue);
    font-weight: 600;
}

.category-section .badge {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .category-section {
        padding: 1.5rem 0;
    }
    
    .category-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-section .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .category-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .category-section .text-end {
        text-align: left !important;
        margin-top: 1rem;
        width: 100%;
    }
    
    .category-section .btn {
        width: 100%;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
    margin-right: 10px;
    padding: 0;
}

.dark-mode-toggle:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 5px 15px rgba(21,214,191,0.3);
}

.dark-mode-toggle:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.dark-mode-toggle i {
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover i {
    transform: rotate(15deg);
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --primary-color: rgb(149,213,205);
    --secondary-color: rgb(21,214,191);
    --primary-dark: #0fa89a;
    --secondary-dark: #0d8a7c;
    --dark-color: #0d1b2a;
    --dark-blue: #1b263b;
    --light-color: #1a1a2e;
    --light-bg: #16213e;
    --white: #0f1419;
    --text-dark: #e4e6eb;
    --text-medium: #b8bac3;
    --text-light: #8a8d94;
    --border-color: #2a2d35;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
    --gradient-primary: linear-gradient(135deg, rgba(149,213,205,1) 0%, rgba(21,214,191,1) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(27,38,59,0.9) 100%);
}

[data-theme="dark"] body {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Dark Mode - Genel Text Elementleri */
[data-theme="dark"] p,
[data-theme="dark"] div,
[data-theme="dark"] span,
[data-theme="dark"] li {
    color: var(--text-dark);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-dark);
}

[data-theme="dark"] strong,
[data-theme="dark"] b {
    color: var(--text-dark);
    font-weight: 600;
}

[data-theme="dark"] mark {
    background-color: var(--secondary-color);
    color: #fff;
}

[data-theme="dark"] .text-muted {
    color: var(--text-light) !important;
}

[data-theme="dark"] .text-dark {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .text-light {
    color: var(--text-light) !important;
}

/* Dark mode top-bar removed */

[data-theme="dark"] .navbar {
    background: rgba(15,20,25,0.98) !important;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15,20,25,0.99) !important;
}

[data-theme="dark"] .offcanvas {
    background: var(--light-bg);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
}

[data-theme="dark"] .offcanvas-backdrop {
    background-color: rgba(0,0,0,0.7);
}

[data-theme="dark"] .offcanvas-header {
    background: linear-gradient(135deg, rgba(149,213,205,0.12) 0%, rgba(21,214,191,0.12) 100%);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .offcanvas-title {
    color: var(--text-dark);
}

[data-theme="dark"] .offcanvas-subtitle {
    color: var(--text-light);
}

[data-theme="dark"] .btn-close-custom {
    background: rgba(21,214,191,0.15);
}

[data-theme="dark"] .btn-close-custom i {
    color: var(--text-dark);
}

[data-theme="dark"] .btn-close-custom:hover {
    background: var(--secondary-color);
}

[data-theme="dark"] .mobile-nav-link {
    color: var(--text-dark);
}

[data-theme="dark"] .mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(149,213,205,0.15) 0%, rgba(21,214,191,0.15) 100%);
    color: var(--secondary-color);
}

[data-theme="dark"] .mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(149,213,205,0.2) 0%, rgba(21,214,191,0.2) 100%);
    color: var(--secondary-color);
}

[data-theme="dark"] .mobile-nav-submenu {
    background: rgba(21,214,191,0.05);
    border-top-color: rgba(21,214,191,0.15);
}

[data-theme="dark"] .mobile-nav-subitem {
    color: var(--text-medium);
}

[data-theme="dark"] .mobile-nav-subitem:hover {
    background: rgba(21,214,191,0.12);
    color: var(--secondary-color);
}

[data-theme="dark"] .mobile-nav-footer {
    background: linear-gradient(135deg, rgba(149,213,205,0.05) 0%, rgba(21,214,191,0.05) 100%);
    border-top-color: var(--border-color);
}

[data-theme="dark"] .mobile-nav-contact-item {
    background: var(--white);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] .mobile-nav-contact-item:hover {
    background: rgba(21,214,191,0.15);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

[data-theme="dark"] .mobile-nav-social-link {
    background: var(--white);
    border-color: var(--border-color);
    color: var(--text-medium);
}

[data-theme="dark"] .mobile-nav-social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

[data-theme="dark"] .navbar-brand {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .navbar-nav .nav-link {
    color: var(--text-medium) !important;
}

[data-theme="dark"] .navbar-nav .nav-link:hover,
[data-theme="dark"] .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

[data-theme="dark"] .dropdown-menu {
    background: var(--light-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .dropdown-item {
    color: var(--text-medium);
}

[data-theme="dark"] .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(149,213,205,0.15), rgba(21,214,191,0.15));
    color: var(--secondary-color);
}

[data-theme="dark"] .card {
    background: var(--light-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .card-header {
    background: var(--gradient-primary);
}

[data-theme="dark"] .card-text {
    color: var(--text-dark);
}

[data-theme="dark"] .card-body {
    color: var(--text-dark);
}

[data-theme="dark"] .card-body p,
[data-theme="dark"] .card-body div,
[data-theme="dark"] .card-body span,
[data-theme="dark"] .card-body h1,
[data-theme="dark"] .card-body h2,
[data-theme="dark"] .card-body h3,
[data-theme="dark"] .card-body h4,
[data-theme="dark"] .card-body h5,
[data-theme="dark"] .card-body h6 {
    color: var(--text-dark);
}

[data-theme="dark"] .card-body strong {
    color: var(--text-dark);
}

[data-theme="dark"] .section.bg-light {
    background: var(--light-bg);
}

[data-theme="dark"] .section p,
[data-theme="dark"] .section div,
[data-theme="dark"] .section span,
[data-theme="dark"] .section li {
    color: var(--text-dark);
}

[data-theme="dark"] .section strong {
    color: var(--text-dark);
}

[data-theme="dark"] .section-title {
    color: var(--text-dark);
}

[data-theme="dark"] .section-subtitle {
    color: var(--text-light);
}

[data-theme="dark"] .feature-box {
    background: var(--light-bg);
}

[data-theme="dark"] .feature-box:hover {
    background: var(--white);
}

[data-theme="dark"] .feature-box h4 {
    color: var(--text-dark);
}

[data-theme="dark"] .feature-box p {
    color: var(--text-light);
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 100%);
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer div,
[data-theme="dark"] .footer span,
[data-theme="dark"] .footer li {
    color: rgba(255,255,255,0.9);
}

[data-theme="dark"] .footer h5 {
    color: var(--secondary-color);
}

[data-theme="dark"] .footer a {
    color: rgba(255,255,255,0.8);
}

[data-theme="dark"] .footer a:hover {
    color: var(--secondary-color);
}

[data-theme="dark"] .footer-bottom {
    color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .breadcrumb-wrapper {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .breadcrumb-item a {
    color: var(--text-medium);
}

[data-theme="dark"] .breadcrumb-item.active {
    color: var(--text-dark);
}

[data-theme="dark"] .product-attributes {
    background: var(--light-bg);
}

[data-theme="dark"] .attribute-item strong {
    color: var(--text-dark);
}

[data-theme="dark"] .product-detail-info h1 {
    color: var(--text-dark);
}

[data-theme="dark"] .product-actions {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .category-section h2 {
    color: var(--text-dark);
}

[data-theme="dark"] .product-list-empty {
    background: var(--light-bg);
    color: var(--text-dark);
}

[data-theme="dark"] .product-card,
[data-theme="dark"] .product-category-card {
    background: var(--light-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .product-category-card .card-body,
[data-theme="dark"] .product-category-card h2,
[data-theme="dark"] .product-category-card .category-title {
    color: var(--text-dark);
}

[data-theme="dark"] .category-title {
    color: var(--text-dark);
}

[data-theme="dark"] .content-area p,
[data-theme="dark"] .content-area div,
[data-theme="dark"] .content-area span {
    color: var(--text-dark);
}

[data-theme="dark"] .content-area strong {
    color: var(--text-dark);
}

[data-theme="dark"] .title-area,
[data-theme="dark"] .sub-title5 {
    color: var(--text-light);
}

[data-theme="dark"] .main-product-image img {
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .goog-te-menu2 {
    background: var(--light-bg) !important;
}

[data-theme="dark"] .goog-te-menu2-item {
    color: var(--text-medium) !important;
}

[data-theme="dark"] .goog-te-menu2-item:hover {
    background: linear-gradient(90deg, rgba(149,213,205,0.15), rgba(21,214,191,0.15)) !important;
    color: var(--secondary-color) !important;
}

[data-theme="dark"] .goog-te-menu2-item-selected {
    background: linear-gradient(90deg, rgba(149,213,205,0.2), rgba(21,214,191,0.2)) !important;
    color: var(--secondary-color) !important;
}

/* Dark Mode Icon Animation */
[data-theme="dark"] #darkModeIcon {
    transform: rotate(180deg);
}

/* Dark Mode Form Elements */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="number"],
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] input[type="email"]:focus,
[data-theme="dark"] input[type="tel"]:focus,
[data-theme="dark"] input[type="number"]:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    background-color: var(--white);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

[data-theme="dark"] input[type="text"]::placeholder,
[data-theme="dark"] input[type="email"]::placeholder,
[data-theme="dark"] input[type="tel"]::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-light);
}

/* Dark Mode Table */
[data-theme="dark"] table {
    color: var(--text-dark);
}

[data-theme="dark"] .table {
    color: var(--text-dark);
}

[data-theme="dark"] .table thead th {
    background-color: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] .table tbody tr {
    border-color: var(--border-color);
}

[data-theme="dark"] .table tbody td {
    border-color: var(--border-color);
}

/* Dark Mode Modal */
[data-theme="dark"] .modal-content {
    background-color: var(--light-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .modal-header {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .modal-footer {
    border-top-color: var(--border-color);
}

[data-theme="dark"] .modal-title {
    color: var(--text-dark);
}

[data-theme="dark"] .modal-body {
    color: var(--text-medium);
}

/* Dark Mode Alert */
[data-theme="dark"] .alert {
    background-color: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

/* Dark Mode Badge */
[data-theme="dark"] .badge {
    color: #fff;
}

[data-theme="dark"] .badge.bg-primary {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

[data-theme="dark"] .badge.bg-light {
    background-color: var(--light-bg) !important;
    color: var(--text-dark) !important;
    border-color: var(--border-color) !important;
}

/* Dark Mode List Group */
[data-theme="dark"] .list-group-item {
    background-color: var(--light-bg);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] .list-group-item:hover {
    background-color: var(--white);
}

/* Dark Mode Link Renkleri */
[data-theme="dark"] a:not(.btn):not(.nav-link):not(.dropdown-item):not(.footer a) {
    color: var(--secondary-color);
}

[data-theme="dark"] a:not(.btn):not(.nav-link):not(.dropdown-item):not(.footer a):hover {
    color: var(--primary-color);
}

[data-theme="dark"] .card a:not(.btn) {
    color: var(--secondary-color);
}

[data-theme="dark"] .card a:not(.btn):hover {
    color: var(--primary-color);
}

[data-theme="dark"] .breadcrumb a {
    color: var(--secondary-color);
}

[data-theme="dark"] .breadcrumb a:hover {
    color: var(--primary-color);
}

/* Dark Mode - Ek Elementler */
[data-theme="dark"] .container,
[data-theme="dark"] .container-fluid {
    color: var(--text-dark);
}

[data-theme="dark"] .lead {
    color: var(--text-dark);
}

[data-theme="dark"] .display-1,
[data-theme="dark"] .display-2,
[data-theme="dark"] .display-3,
[data-theme="dark"] .display-4,
[data-theme="dark"] .display-5,
[data-theme="dark"] .display-6 {
    color: var(--text-dark);
}

[data-theme="dark"] .btn-wrapper,
[data-theme="dark"] .btn-wrapper a {
    color: inherit;
}

[data-theme="dark"] .contact-info-item,
[data-theme="dark"] .contact-info-item i {
    color: var(--text-dark);
}

[data-theme="dark"] .list-unstyled li {
    color: var(--text-dark);
}

[data-theme="dark"] .list-unstyled a {
    color: var(--secondary-color);
}

[data-theme="dark"] .list-unstyled a:hover {
    color: var(--primary-color);
}

/* Responsive Dark Mode Toggle */
@media (max-width: 768px) {
    .dark-mode-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 5px;
    }
}

/* Anasayfa Ürün Kategorileri Stilleri */
.space-top {
    padding-top: 80px;
}

.space-extra-bottom {
    padding-bottom: 80px;
}

.product-category {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-category a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.product-category img {
    border-radius: 8px;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.product-category a:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.category-title mark.count {
    background: transparent;
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0;
    margin-left: 0.5rem;
}

/* Biz Kimiz Section Stilleri */
.sub-title5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.sub-title5.after-none::after {
    display: none;
}

.th-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.th-btn.th_btn {
    background-color: var(--secondary-color);
    color: #fff;
}

.th-btn.th_btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 214, 191, 0.3);
}

/* Responsive Anasayfa */
@media (max-width: 768px) {
    .space-top {
        padding-top: 30px;
    }
    
    .space-extra-bottom {
        padding-bottom: 30px;
    }
    
    .category-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .sub-title5 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .th-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .title-area {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}

/* Kategori ve Ürün Sayfaları Stilleri - medihfm.com yapısı */
.th-product-wrapper {
    position: relative;
}

.th-sort-bar {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.result-count {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.product-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
}

.th-product {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.th-product-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.th-product:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-img {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
    aspect-ratio: 294/312;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.th-product:hover .product-img img {
    transform: scale(1.1);
}

.product-img .actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.th-product:hover .product-img .actions {
    opacity: 1;
}

.product-img .icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-img .icon-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.product-category a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--secondary-color);
}

.shop-grid-area {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .th-sort-bar {
        padding: 8px 0;
    }
    
    .result-count {
        font-size: 0.8rem;
    }
    
    .product-content {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .product-category {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .product-img .icon-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Katalog Tarzı Ürün Kartları */
.catalog-product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.catalog-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(21,214,191,0.3);
}

.catalog-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-product-image {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.05);
}

.catalog-product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-product-category {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.catalog-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    flex-grow: 1;
}

.catalog-product-code {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.catalog-product-code strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Katalog Ürün Detay Stilleri */
.catalog-product-detail-images {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.catalog-spec-table,
.catalog-variants-table {
    margin-bottom: 0;
    border-color: var(--border-color);
    font-size: 0.95rem;
}

.catalog-spec-table td,
.catalog-variants-table td,
.catalog-variants-table th {
    padding: 12px 15px;
    vertical-align: middle;
    border-color: var(--border-color);
}

.catalog-variants-table thead th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.catalog-variants-table tbody tr:hover {
    background-color: var(--light-bg);
}

.catalog-variants-table tbody td {
    text-align: center;
}

/* Responsive Katalog */
@media (max-width: 991px) {
    .catalog-product-detail-images {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .catalog-product-info {
        padding: 15px;
    }
    
    .catalog-product-title {
        font-size: 0.95rem;
    }
}

/* Categories Carousel Styles */
.categories-carousel-wrapper {
    position: relative;
    padding: 20px 50px;
}

.categories-carousel .item {
    padding: 0 15px;
}

.categories-carousel .product-category {
    text-align: center;
    transition: all 0.3s ease;
}

.categories-carousel .product-category:hover {
    transform: translateY(-8px);
}

.categories-carousel .category-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.categories-carousel .product-category:hover .category-image-wrapper {
    box-shadow: var(--shadow-lg);
}

.categories-carousel .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.categories-carousel .product-category:hover .category-image {
    transform: scale(1.08);
}

.categories-carousel .category-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    font-size: 3rem;
    color: #ccc;
}

.categories-carousel .category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    transition: color 0.3s ease;
}

.categories-carousel .product-category:hover .category-title {
    color: var(--secondary-color);
}

/* Owl Carousel Navigation Buttons */
.categories-carousel-wrapper .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.categories-carousel-wrapper .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white) !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--secondary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin: 0;
}

.categories-carousel-wrapper .owl-nav button:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.categories-carousel-wrapper .owl-nav button.owl-prev {
    left: 0;
}

.categories-carousel-wrapper .owl-nav button.owl-next {
    right: 0;
}

/* Categories Carousel Dots - Gizlendi */
.categories-carousel-wrapper .owl-dots {
    display: none !important;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .categories-carousel-wrapper {
        padding: 20px 0;
    }
    
    .categories-carousel-wrapper .owl-nav {
        display: none;
    }
    
    .categories-carousel .category-image-wrapper {
        height: 250px;
    }
    
    .categories-carousel .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .categories-carousel .category-image-wrapper {
        height: 220px;
    }
    
    .categories-carousel .category-title {
        font-size: 1rem;
    }
    
    .categories-carousel .item {
        padding: 0 10px;
    }
}

/* Content Wrapper - İçerik Sayfaları İçin Standart Stil */
.content-wrapper {
    color: var(--text-medium);
    line-height: 1.8;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-medium);
}

.content-wrapper p.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.content-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--dark-blue);
    font-weight: 600;
}

.content-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Image Gallery Stilleri */
.content-wrapper .row.g-4 img,
.content-wrapper img.img-fluid {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-wrapper .row.g-4 img:hover,
.content-wrapper img.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Card Title Stilleri - Tutarlılık */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--secondary-color);
}

/* Solution Card İyileştirmeleri - CSS'e taşındı */
.solution-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21,214,191,0.3);
}

.solution-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--light-bg);
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.1);
}

.solution-card .card-body {
    padding: 1.75rem;
}

.solution-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.solution-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .solution-image-wrapper {
        height: 220px;
    }
    
    .solution-card .card-title {
        font-size: 1.1rem;
    }
}

/* Section Subtitle Small - Küçük Üst Başlık */
.section-subtitle-small {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Image Box Stilleri */
.img-box10 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: stretch;
}

.img-box10 .img1 {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .img-box10 {
        min-height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .img-box10 {
        min-height: 350px;
    }
}

/* Product Placeholder Stilleri */
.product-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
}

.product-placeholder i {
    font-size: 2rem;
    color: #ccc;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    background: var(--light-bg);
}

.product-image-wrapper.product-placeholder {
    height: 250px;
}

/* Inline Stil Temizleme - Ürün Detay Sayfası */
.catalog-product-detail-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.catalog-product-detail-info .product-category-badge {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.catalog-product-detail-info .product-description-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.catalog-product-detail-info .product-description-text {
    line-height: 1.8;
    color: var(--text-medium);
}

.catalog-product-detail-info .product-specs-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.catalog-spec-table th {
    width: 40%;
    font-weight: 600;
    background: var(--light-bg);
    color: var(--text-dark);
}

.catalog-spec-table td {
    color: var(--text-medium);
}

/* Thumbnail Wrapper */
.thumbnail-wrapper {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.thumbnail-wrapper.active {
    border-color: var(--secondary-color);
}

/* Main Product Image */
.main-product-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: var(--light-bg);
    padding: 20px;
}

.main-product-image-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 12px;
}

.main-product-image-placeholder i {
    font-size: 4rem;
    color: #ccc;
}

/* Certificate Image Stilleri */
.img-certificate {
    max-height: 600px;
    object-fit: contain;
    width: 100%;
}

/* Image Box with Overlay */
.img-box-with-overlay {
    position: relative;
}

.img-hero {
    height: 500px;
    object-fit: cover;
}

.project-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.project-counter .box-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.project-counter .box-title {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .project-counter {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .project-counter .box-number {
        font-size: 2rem;
    }
    
    .img-hero {
        height: 400px;
    }
}


