        :root {
            --primary: #0A2A4A;
            --secondary: #00A8B5;
            --secondary-hover: #008f9a;
            --accent: #21618C;
            --text-dark: #2C3E50;
            --text-muted: #6c757d;
            --bg-light: #F4F7F6;
            --white: #ffffff;
            --border-radius: 12px;
            --transition: all 0.3s ease-in-out;
            --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --box-shadow-hover: 0 15px 40px rgba(0,0,0,0.12);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary);
            line-height: 1.3;
        }

        .section-padding {
            padding: 80px 0;
        }

        .bg-light-blue {
            background-color: var(--bg-light);
        }

        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--secondary-hover);
            border-color: var(--secondary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 168, 181, 0.4);
        }

        .btn-outline-primary {
            color: var(--secondary);
            border-color: var(--secondary);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            transition: var(--transition);
        }

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

        .topbar {
            background-color: var(--primary);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            padding: 8px 0;
        }

        .topbar a {
            color: rgba(255, 255, 255, 0.9);
            margin-right: 15px;
        }

        .topbar a:hover {
            color: var(--secondary);
        }

        .topbar i {
            margin-right: 5px;
            color: var(--secondary);
        }

        .header-main {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .header-main.sticky-top {
            position: sticky;
            top: 0;
            z-index: 1020;
        }

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

        .navbar-nav .nav-link {
            color: var(--primary);
            font-weight: 600;
            padding: 15px 12px !important;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary);
        }

        .language-switcher .nav-link {
            font-weight: 700;
            font-size: 0.9rem;
        }

        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
                opacity: 1;
                visibility: visible;
            }

            .dropdown-menu {
                display: block;
                opacity: 0;
                visibility: hidden;
                transition: all 0.2s ease-in-out;
                border: none;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border-radius: 8px;
                padding: 10px 0;
                border-top: 3px solid var(--secondary);
            }

            .dropdown-item {
                padding: 10px 20px;
                font-size: 0.9rem;
                font-weight: 500;
                color: var(--text-dark);
            }

            .dropdown-item:hover,
            .dropdown-item.active {
                background-color: var(--bg-light);
                color: var(--secondary);
            }
        }

        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(10,42,74,0.92) 0%, rgba(33,97,140,0.85) 100%);
            padding: 120px 0 100px;
            color: var(--white);
            overflow: hidden;
        }

        .hero h1 {
            color: var(--white);
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero p.lead {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .trust-badges-wrapper {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .trust-badge i {
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .section-title .divider {
            height: 4px;
            width: 60px;
            background: var(--secondary);
            margin: 0 auto;
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-muted);
            margin-top: 15px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-hover);
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--secondary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--secondary);
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .product-cat-card {
            display: flex;
            align-items: center;
            background: var(--white);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            border: 1px solid #eee;
            transition: var(--transition);
            margin-bottom: 15px;
        }

        .product-cat-card:hover {
            border-color: var(--secondary);
            background-color: var(--bg-light);
        }

        .product-cat-icon {
            font-size: 24px;
            color: var(--secondary);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }

        .product-cat-title {
            font-weight: 600;
            color: var(--primary);
            margin: 0;
            font-size: 1.05rem;
        }

        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: rgba(0, 168, 181, 0.1);
            color: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
        }

        .feature-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feature-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

        .footer {
            background-color: var(--primary);
            color: rgba(255,255,255,0.7);
            padding: 70px 0 20px;
            font-size: 0.9rem;
        }

        .footer h5 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer a {
            color: rgba(255,255,255,0.7);
            display: block;
            margin-bottom: 10px;
        }

        .footer a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer .social-links a {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: var(--white);
        }

        .footer .social-links a:hover {
            background: var(--secondary);
            padding-left: 0;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        /*
           Eski statik header yanlışlıkla anasayfa içinde kalırsa
           ikinci topbar/header görünmesin diye güvenlik kuralı.
        */
        .akyol-site-header ~ .topbar,
        .akyol-site-header ~ .header-main {
            display: none !important;
        }

        @media (max-width: 991px) {
            .navbar-brand img {
                max-height: 46px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .topbar {
                display: none;
            }
        }
		/* =========================================================
   AKYOL MEDİKAL - ALT SAYFA ORTAK STİLLERİ
   Header içinde bir kere yüklenecek
   ========================================================= */

/* Page Hero / Breadcrumb Area */
.page-hero {
    background: linear-gradient(135deg, rgba(10,42,74,0.95) 0%, rgba(33,97,140,0.9) 100%), url('https://placehold.co/1920x400/0A2A4A/FFFFFF?text=Akyol+Medikal') no-repeat center center/cover;
    padding: 80px 0 60px;
    color: var(--white);
}

.breadcrumb-transparent {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.breadcrumb-transparent a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-transparent a:hover {
    color: var(--secondary);
}

.breadcrumb-transparent .separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-transparent .current {
    color: var(--white);
    font-weight: 600;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero .intro-text {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
}

/* Main Content Text Area */
.page-content {
    background-color: var(--white);
}

.corporate-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.corporate-content h2,
.corporate-content h3,
.corporate-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.corporate-content h2:first-child,
.corporate-content h3:first-child,
.corporate-content h4:first-child {
    margin-top: 0;
}

.corporate-content p {
    margin-bottom: 18px;
}

.corporate-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.corporate-content li {
    margin-bottom: 10px;
    position: relative;
}

.corporate-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Corporate Image */
.corporate-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.corporate-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.corporate-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid var(--secondary);
    border-radius: var(--border-radius);
    opacity: 0.2;
    transform: scale(0.95);
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.corporate-image-wrapper:hover::before {
    transform: scale(1);
    opacity: 0.5;
}

/* Trust Boxes */
.trust-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: var(--transition);
}

.trust-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.trust-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Document Cards */
.document-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    height: 100%;
}

.document-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.document-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-right: 20px;
    opacity: 0.8;
    flex-shrink: 0;
}

.document-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.document-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Generic CTA */
.corporate-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.corporate-cta h2,
.corporate-cta h3,
.corporate-cta h4 {
    color: var(--white);
}

/* Product / Blog Detail Shared */
.detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.detail-content h2,
.detail-content h3,
.detail-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.detail-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Listing Cards */
.listing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.listing-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--bg-light);
}

.listing-card-body {
    padding: 25px;
}

.listing-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.listing-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Empty State */
.empty-state {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

/* Responsive */
@media (max-width: 991px) {
    .page-hero {
        padding: 60px 0 45px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .corporate-cta {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-transparent {
        border-radius: 15px;
        font-size: 0.78rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .document-card {
        flex-direction: column;
    }

    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}/* =========================================================
   ÜRÜN KATEGORİ SAYFASI STİLLERİ
   ========================================================= */

.category-layout {
    background-color: var(--bg-light);
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-nav li {
    margin-bottom: 8px;
}

.category-nav a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.category-nav a i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-nav a:hover,
.category-nav a.active {
    background: var(--secondary);
    color: var(--white);
}

.category-nav a:hover i,
.category-nav a.active i {
    color: var(--white);
}

.widget-contact-box {
    background: linear-gradient(135deg, rgba(10,42,74,0.03) 0%, rgba(0,168,181,0.05) 100%);
    text-align: center;
}

.widget-contact-box i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.3);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%;
    background: #fff;
    overflow: hidden;
    border-bottom: 1px solid var(--bg-light);
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.seo-content-block {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 50px;
    border: 1px solid rgba(0,0,0,0.04);
}

.seo-content-block h2,
.seo-content-block h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-content-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.seo-content-block ul {
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content-block ul li {
    margin-bottom: 8px;
}

.category-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--box-shadow);
}

.category-cta h3 {
    color: var(--white);
}

@media (max-width: 991px) {
    .category-layout {
        padding-top: 40px;
    }
}/* =========================================================
   ÜRÜN DETAY SAYFASI STİLLERİ
   ========================================================= */

.btn-success-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-success-whatsapp:hover {
    background-color: #1ebd5c;
    border-color: #1ebd5c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.breadcrumb-bar {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-clean {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.breadcrumb-clean li a {
    color: var(--text-muted);
}

.breadcrumb-clean li a:hover {
    color: var(--secondary);
}

.breadcrumb-clean li .separator {
    margin: 0 10px;
    color: #ced4da;
    font-size: 0.75rem;
}

.breadcrumb-clean li.active {
    color: var(--primary);
    font-weight: 600;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    padding: 5px;
    background: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px var(--secondary);
}

.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-brand-cat {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.product-title-h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-spot {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

@media (min-width: 576px) {
    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.product-meta-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.product-meta-list li i {
    color: var(--secondary);
    width: 25px;
    font-size: 1.1rem;
}

.product-tabs-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e9ecef;
}

.custom-nav-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.custom-nav-tabs::-webkit-scrollbar {
    display: none;
}

.custom-nav-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 15px 25px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    border-radius: 0;
    white-space: nowrap;
}

.custom-nav-tabs .nav-link:hover {
    color: var(--primary);
}

.custom-nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-color: var(--secondary);
}

.tab-content-box {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.tab-content-box h2,
.tab-content-box h3 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tab-content-box img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

.tech-table th,
.tech-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.tech-table th {
    width: 35%;
    color: var(--primary);
    font-weight: 600;
    background-color: rgba(0, 168, 181, 0.03);
}

.tech-table tr:last-child th,
.tech-table tr:last-child td {
    border-bottom: none;
}

.custom-accordion .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary);
    background-color: var(--white);
    box-shadow: none !important;
    padding: 18px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary);
    background-color: rgba(0, 168, 181, 0.05);
}

.custom-accordion .accordion-body {
    color: var(--text-muted);
    line-height: 1.7;
    padding: 20px;
}

.related-product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 168, 181, 0.3);
    transform: translateY(-5px);
}

.product-cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.product-cta-block h3 {
    color: var(--white);
}

@media (max-width: 991px) {
    .product-gallery {
        position: relative;
        top: auto;
    }

    .product-title-h1 {
        font-size: 1.8rem;
    }

    .product-cta-block {
        padding: 35px 25px;
    }
}/* =========================================================
   HİZMET DETAY SAYFASI STİLLERİ
   ========================================================= */

.service-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

.service-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.service-content h2,
.service-content h3,
.service-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content h2:first-child,
.service-content h3:first-child,
.service-content h4:first-child {
    margin-top: 0;
}

.service-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 10px;
}

.process-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    z-index: 1;
}

.process-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.2);
    transform: translateY(-5px);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 168, 181, 0.3);
    border: 3px solid var(--white);
}

.process-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.service-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-nav li {
    margin-bottom: 8px;
}

.service-nav a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-nav a i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-nav a:hover,
.service-nav a.active {
    background: var(--secondary);
    color: var(--white);
}

.service-nav a:hover i,
.service-nav a.active i {
    color: var(--white);
}

.widget-contact-box i.main-icon {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.service-cta h3 {
    color: var(--white);
}

@media (max-width: 991px) {
    .service-cta {
        padding: 35px 25px;
    }
}
/* =========================================================
   BLOG LİSTE SAYFASI STİLLERİ
   ========================================================= */

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.2);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background-color: var(--bg-light);
    display: block;
}

.blog-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 6px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
}

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

.blog-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

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

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    background: var(--bg-light);
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.recent-post-info h4 a {
    color: var(--primary);
    transition: var(--transition);
}

.recent-post-info h4 a:hover {
    color: var(--secondary);
}

.recent-post-info .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-nav li {
    margin-bottom: 8px;
    border-bottom: 1px solid #f8f9fa;
}

.blog-category-nav li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-category-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.blog-category-nav a:hover,
.blog-category-nav a.active {
    color: var(--secondary);
    padding-left: 5px;
}

.blog-category-nav a i {
    color: var(--secondary);
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.blog-category-nav a:hover i,
.blog-category-nav a.active i {
    opacity: 1;
}

.custom-pagination {
    margin-top: 40px;
}

.custom-pagination .page-item .page-link {
    color: var(--text-dark);
    border: none;
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 5px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.custom-pagination .page-item:not(.disabled) .page-link:hover {
    background: var(--bg-light);
    color: var(--secondary);
    transform: translateY(-2px);
}

.custom-pagination .page-item.active .page-link {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 181, 0.4);
}

.custom-pagination .page-item.disabled .page-link {
    color: #ced4da;
    background: transparent;
    box-shadow: none;
}

.empty-state-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.empty-state-box i {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}
/* Blog sayfası üst boşluk düzeltme */
.blog-list-section {
    padding-top: 70px;
}

.blog-list-section .container {
    position: relative;
    z-index: 2;
}

.page-hero + .blog-list-section {
    margin-top: 0;
}

@media (max-width: 991px) {
    .blog-list-section {
        padding-top: 45px;
    }
}
@media (max-width: 991px) {
    .blog-list-section {
        padding-top: 35px;
    }

    .blog-card {
        margin-bottom: 5px;
    }

    .sidebar-widget:first-child {
        margin-top: 30px;
    }
}
/* =========================================================
   BLOG DETAY SAYFASI STİLLERİ
   ========================================================= */

.blog-detail-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.blog-detail-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    background: var(--bg-light);
}

.blog-detail-body {
    padding: 40px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
}

.blog-detail-meta i {
    margin-right: 7px;
}

.blog-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

.blog-detail-spot {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-detail-content h2:first-child,
.blog-detail-content h3:first-child,
.blog-detail-content h4:first-child {
    margin-top: 0;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 22px;
    margin-bottom: 22px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.blog-share-box {
    border-top: 1px solid #e9ecef;
    margin-top: 35px;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.blog-share-title {
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.blog-share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-share-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-share-links a:hover {
    background: var(--secondary);
    color: var(--white);
}

.blog-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.blog-nav-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    height: 100%;
}

.blog-nav-card:hover {
    border-color: rgba(0,168,181,0.4);
    box-shadow: var(--box-shadow);
}

.blog-nav-card small {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-nav-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.related-blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.related-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0,168,181,0.3);
}

.related-blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-light);
}

.related-blog-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-blog-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-blog-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .blog-detail-body {
        padding: 28px;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-detail-body {
        padding: 22px;
    }

    .blog-detail-title {
        font-size: 1.55rem;
    }

    .blog-detail-spot {
        font-size: 1rem;
    }

    .blog-detail-meta {
        gap: 10px;
        font-size: 0.82rem;
    }
}/* =========================================================
   REFERANS SAYFASI STİLLERİ
   ========================================================= */

.reference-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.2);
}

.reference-logo {
    padding: 30px;
    background: var(--white);
    border-bottom: 1px solid #f8f9fa;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.reference-card:hover .reference-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.reference-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.reference-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.reference-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.reference-empty-box {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed rgba(0, 168, 181, 0.3);
}

.reference-empty-box i {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}

.reference-trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 181, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.trust-box:hover .reference-trust-icon {
    background: var(--secondary);
    color: var(--white);
}

@media (max-width: 576px) {
    .reference-logo {
        height: 140px;
        padding: 24px;
    }

    .reference-info {
        padding: 18px;
    }
}/* =========================================================
   KATALOG SAYFASI STİLLERİ
   ========================================================= */

.catalog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.25);
}

.catalog-image {
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.04);
}

.catalog-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-body h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.catalog-body p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.catalog-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.catalog-empty-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    border: 1px dashed rgba(0, 168, 181, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.catalog-empty-box i {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}

.catalog-cta {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 55px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.catalog-cta h3 {
    color: var(--primary);
}

@media (max-width: 991px) {
    .catalog-image {
        height: 250px;
    }

    .catalog-cta {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .catalog-actions .btn {
        width: 100%;
    }
}
/* Katalog PDF Modal */
#catalogPdfModal .modal-xl {
    max-width: 1200px;
}

#catalogPdfModal .modal-header {
    background: var(--primary) !important;
}

#catalogPdfModal iframe {
    background: #f8f9fa;
}

@media (max-width: 576px) {
    #catalogPdfModal .modal-dialog {
        margin: 10px;
    }

    #catalogPdfModal iframe {
        height: 70vh !important;
    }
}
.catalog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.25);
}

.catalog-image {
    height: 260px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.04);
}

.catalog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-body h3 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.catalog-body p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.catalog-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.catalog-empty-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    border: 1px dashed rgba(0, 168, 181, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.catalog-empty-box i {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}

.catalog-cta {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 55px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.catalog-cta h3 {
    color: var(--primary);
}

#catalogPdfModal .modal-xl {
    max-width: 1200px;
}

#catalogPdfModal .modal-header {
    background: var(--primary) !important;
}

#catalogPdfModal iframe {
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .catalog-image {
        height: 240px;
    }

    .catalog-cta {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .catalog-actions .btn {
        width: 100%;
    }

    #catalogPdfModal .modal-dialog {
        margin: 10px;
    }

    #catalogPdfModal iframe {
        height: 70vh !important;
    }
}/* =========================================================
   İLETİŞİM SAYFASI STİLLERİ
   ========================================================= */

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.25);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    word-break: break-word;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid #eee;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 181, 0.12);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary);
}

.contact-map-box {
    background: var(--white);
    padding: 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid #eee;
    overflow: hidden;
}

.contact-map-box iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 10px;
}

.working-hours-box {
    background: var(--white);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid #eee;
}

.quick-contact-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 45px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.quick-contact-box h3 {
    color: var(--white);
}

.contact-alert {
    border-radius: var(--border-radius);
    border: 0;
    padding: 15px 18px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .contact-form {
        padding: 28px;
    }

    .quick-contact-box {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 22px;
    }

    .quick-contact-box .btn {
        width: 100%;
    }
}
/* =========================================================
   SERTİFİKALAR SAYFASI STİLLERİ
   ========================================================= */

.certificate-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 168, 181, 0.25);
}

.certificate-image {
    height: 230px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.04);
}

.certificate-info {
    background: var(--bg-light);
    padding: 22px;
    text-align: center;
    flex-grow: 1;
}

.certificate-info h3 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.certificate-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.certificate-empty-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 55px 30px;
    text-align: center;
    border: 1px dashed rgba(0, 168, 181, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.certificate-empty-box i {
    font-size: 3rem;
    color: #ced4da;
    margin-bottom: 20px;
}

#certificatePreviewModal .modal-header {
    background: var(--primary);
}

#certificatePreviewModal .modal-title {
    color: var(--white);
}

.certificate-preview-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .certificate-image {
        height: 210px;
    }
}

@media (max-width: 576px) {
    .certificate-image {
        height: 190px;
        padding: 18px;
    }

    .certificate-info {
        padding: 18px;
    }
}
/* =========================================================
   ANASAYFA HERO / SLIDER MOBİL DÜZENLEME
   ========================================================= */

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 42, 74, 0.92) 0%, rgba(33, 97, 140, 0.82) 100%),
        url('/view/assets/images/hero-bg.webp') center center / cover no-repeat !important;
}

.hero::before {
    position: absolute;
    right: -40px;
    bottom: 40px;
    font-size: clamp(70px, 11vw, 170px);
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

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

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
}

.hero p,
.hero .lead {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    max-width: 720px;
}

.hero .btn {
    white-space: nowrap;
}

.trust-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-badge {
    max-width: 100%;
}

/* Mobil hero düzeltme */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 90px 0 60px;
        align-items: flex-start;
        background-position: center top !important;
    }

    .hero::before {
        font-size: 58px;
        right: -110px;
        bottom: 110px;
        opacity: 0.8;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .hero p,
    .hero .lead {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero .d-flex {
        flex-direction: column;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .hero .btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        font-size: 1rem;
    }

    .trust-badges-wrapper {
        margin-top: 28px;
        flex-direction: column;
        gap: 12px;
    }

    .trust-badge {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 18px;
        border-radius: 28px;
    }
}

@media (max-width: 420px) {
    .hero {
        padding: 75px 0 50px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p,
    .hero .lead {
        font-size: 0.98rem;
    }

    .hero::before {
        font-size: 50px;
        right: -115px;
        bottom: 125px;
    }
}/* =========================================================
   ANASAYFA ÜRÜN KATEGORİLERİ - SON DÜZENLEME
   Masaüstü: 8 kategori
   Mobil: 9 kategori
   ========================================================= */

.home-product-categories {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.home-product-categories .section-title {
    margin-bottom: 36px !important;
}

.home-product-categories .row {
    --bs-gutter-y: 16px !important;
    row-gap: 16px !important;
}

.home-product-categories .product-cat-card {
    margin-bottom: 0 !important;
    min-height: 72px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
}

.home-product-categories .product-cat-icon {
    margin-right: 14px;
    width: 36px;
    font-size: 24px;
    flex-shrink: 0;
}

.home-product-categories .product-cat-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

/* 9. kategori masaüstünde görünmesin */
.home-product-categories .home-category-mobile-only {
    display: none !important;
}

/* Tablet ve mobilde 9. kategori görünsün */
@media (max-width: 991px) {
    .home-product-categories .home-category-mobile-only {
        display: block !important;
    }
}

/* Mobil sıkı görünüm */
@media (max-width: 768px) {
    .home-product-categories {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .home-product-categories .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-product-categories .section-title {
        margin-bottom: 24px !important;
    }

    .home-product-categories .section-title h2 {
        font-size: 1.85rem;
        margin-bottom: 10px;
    }

    .home-product-categories .section-title .divider {
        margin-top: 8px;
        margin-bottom: 12px;
    }

    .home-product-categories .section-title p {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .home-product-categories .row {
        --bs-gutter-y: 10px !important;
        row-gap: 10px !important;
    }

    .home-product-categories .product-cat-card {
        min-height: 58px;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .home-product-categories .product-cat-icon {
        font-size: 21px;
        width: 30px;
        margin-right: 12px;
    }

    .home-product-categories .product-cat-title {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .home-product-categories .product-cat-card .ms-auto {
        font-size: 0.85rem;
    }
}

/* Çok küçük ekran */
@media (max-width: 420px) {
    .home-product-categories {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .home-product-categories .row {
        --bs-gutter-y: 8px !important;
        row-gap: 8px !important;
    }

    .home-product-categories .product-cat-card {
        min-height: 54px;
        padding: 11px 13px;
    }

    .home-product-categories .product-cat-title {
        font-size: 0.93rem;
    }
}/* =========================================================
   ANASAYFA HİZMETLER 5'Lİ KART DÜZENİ
   ========================================================= */

@media (min-width: 1200px) {
    .col-service-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .col-service-5 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

.service-card {
    padding: 26px 18px;
}

.service-card h3 {
    font-size: 1.08rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.service-card .btn {
    padding: 9px 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-card {
        padding: 24px 18px;
    }
}/* =========================================================
   HAKKIMIZDA SAYFASI YENİ DÜZEN
   ========================================================= */

.about-detail-section {
    background: #fff;
}

.about-hero-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(10, 42, 74, 0.12);
    margin-bottom: 45px;
}

.about-hero-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,42,74,0.05) 0%, rgba(10,42,74,0.22) 100%);
    pointer-events: none;
}

.about-content-card {
    background: #fff;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 12px 35px rgba(10, 42, 74, 0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-content-card h2,
.about-content-card h3,
.about-content-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-top: 28px;
    margin-bottom: 14px;
}

.about-content-card h2:first-child,
.about-content-card h3:first-child,
.about-content-card h4:first-child {
    margin-top: 0;
}

.about-content-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-content-card ul {
    padding-left: 0;
    margin: 24px 0;
    list-style: none;
}

.about-content-card ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.75;
}

.about-content-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: rgba(0, 168, 181, 0.12);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.about-content-card strong,
.about-content-card b {
    color: var(--primary);
    font-weight: 800;
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 35px 0 10px;
}

.about-highlight-item {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.about-highlight-item i {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 10px;
}

.about-highlight-item span {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .about-hero-image {
        margin-bottom: 28px;
    }

    .about-hero-image img {
        height: 300px;
    }

    .about-content-card {
        padding: 30px;
    }

    .about-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-detail-section {
        padding-top: 45px !important;
    }

    .about-hero-image {
        border-radius: 14px;
        margin-bottom: 22px;
    }

    .about-hero-image img {
        height: 230px;
    }

    .about-content-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .about-content-card p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about-content-card ul li {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .about-highlight-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}/* =========================================================
   FOOTER SABİT BUTONLAR / YUKARI ÇIK
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .25s ease;
    box-shadow: 0 8px 22px rgba(0, 168, 181, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-fixed-contact {
    display: none;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 72px;
    }

    .back-to-top {
        right: 16px;
        bottom: 88px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .mobile-fixed-contact {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 -5px 18px rgba(0,0,0,0.12);
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .mobile-fixed-contact a {
        width: 50%;
        height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }

    .mobile-fixed-contact .mobile-call-btn {
        background: var(--primary);
    }

    .mobile-fixed-contact .mobile-wa-btn {
        background: #25D366;
    }

    .mobile-fixed-contact a i {
        font-size: 18px;
    }
}/* =========================================================
   HİZMET DETAY SAYFASI ÜST BOŞLUK / MOBİL SIRALAMA
   ========================================================= */

.service-detail-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.service-detail-section .service-image-wrapper {
    margin-bottom: 32px;
}

.service-detail-section .service-image-wrapper img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-detail-section .service-content {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 10px 0 0;
}

.service-detail-section .sidebar-widget:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {
    .service-detail-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .service-detail-section .service-main-column {
        order: 1;
    }

    .service-detail-section .service-sidebar-column {
        order: 2;
        margin-top: 35px;
    }

    .service-detail-section .service-image-wrapper {
        margin-bottom: 24px;
    }

    .service-detail-section .service-image-wrapper img {
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .service-detail-section {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    .service-detail-section .service-image-wrapper img {
        max-height: 240px;
    }

    .service-detail-section .service-content {
        font-size: 0.96rem;
        line-height: 1.75;
    }
}/* =========================================================
   ANASAYFA LÜMENİS LAZER BÖLÜMÜ
   ========================================================= */

/* =========================================================
   ANASAYFA LÜMENİS LAZER BÖLÜMÜ - ARKA PLAN DÜZELTME
   ========================================================= */

section.lumenis-section {
    background:
        radial-gradient(circle at top right, rgba(0, 168, 181, 0.16) 0%, rgba(0, 168, 181, 0.04) 28%, transparent 50%),
        linear-gradient(135deg, #eef7f9 0%, #ffffff 55%, #f4f8fb 100%) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

section.lumenis-section::before {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 380px;
    height: 380px;
    background: rgba(0, 168, 181, 0.10);
    border-radius: 50%;
    z-index: -1;
}

section.lumenis-section::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: rgba(10, 42, 74, 0.05);
    border-radius: 50%;
    z-index: -1;
}

section.lumenis-section .container {
    position: relative;
    z-index: 2;
}
.lumenis-content .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 168, 181, 0.12);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.lumenis-content h2 {
    color: var(--primary);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
    margin-bottom: 20px;
}

.lumenis-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.lumenis-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin-top: 24px;
}

.lumenis-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.lumenis-list i {
    width: 24px;
    height: 24px;
    background: rgba(0, 168, 181, 0.12);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.lumenis-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.lumenis-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 12px 35px rgba(10, 42, 74, 0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all .25s ease;
    min-height: 210px;
}

.lumenis-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(10, 42, 74, 0.11);
    border-color: rgba(0, 168, 181, 0.25);
}

.lumenis-service-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 168, 181, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.lumenis-service-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.lumenis-service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .lumenis-list {
        grid-template-columns: 1fr;
    }

    .lumenis-card-grid {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .lumenis-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .lumenis-content h2 {
        font-size: 1.9rem;
    }

    .lumenis-content p {
        font-size: 0.96rem;
    }

    .lumenis-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lumenis-service-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 14px;
    }

    .lumenis-service-card .icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 14px;
    }
}