:root {
    --dark: #111827;
    --dark-soft: #1f2937;
    --blue: #2563eb;
    --primary: #2563eb;
    --light: #f8fafc;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: white;
}

a {
    text-decoration: none;
}

/* Navbar */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.site-navbar {
    padding: 20px 0;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(8px);
}

.site-logo {
    color: white !important;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 24px;
}

.site-menu .nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 18px;
}

    .site-menu .nav-link:hover {
        color: #dbeafe !important;
    }

.language-switcher {
    color: white;
    font-size: 14px;
}

    .language-switcher a {
        color: white;
        font-weight: 600;
        margin: 0 4px;
    }

        .language-switcher a:hover {
            color: #bfdbfe;
        }

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(120deg, #111827, #1e3a8a);
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(17,24,39,0.85), rgba(17,24,39,0.45), rgba(17,24,39,0.15) );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 720px;
    padding-top: 80px;
}

    .hero-content h1 {
        font-size: 55px;
        line-height: 1.08;
        font-weight: 800;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 18px;
        color: #e5e7eb;
        margin-bottom: 32px;
    }

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--blue);
    color: white;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
}

    .btn-main:hover {
        background: #1d4ed8;
        color: white;
    }

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.7);
    color: white;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
}

    .btn-ghost:hover {
        background: white;
        color: var(--dark);
    }

/* Sections */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    margin-bottom: 48px;
}

    .section-title span {
        color: var(--blue);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 38px;
        font-weight: 800;
        margin-top: 10px;
    }

    .section-title p {
        color: var(--muted);
        max-width: 700px;
    }

/* About */

.about-box {
    background: white;
    border: 1px solid var(--border);
    padding: 34px;
    border-radius: 16px;
    height: 100%;
}

    .about-box h4 {
        font-weight: 800;
        margin-bottom: 15px;
    }

    .about-box p {
        color: var(--muted);
        margin-bottom: 0;
    }

/* Stats */

.stats-wrapper {
    background: var(--dark);
    color: white;
    padding: 60px 0;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-item p {
    color: #d1d5db;
    margin: 0;
}

/* Products */

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.25s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    .product-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        background: #f3f4f6;
    }

.product-card-body {
    padding: 20px;
}

    .product-card-body h5 {
        font-weight: 800;
        margin-bottom: 8px;
    }

    .product-card-body p {
        color: var(--muted);
        font-size: 14px;
    }




/* Responsive */

@media (max-width: 991px) {
    .site-navbar {
        background: rgba(17, 24, 39, 0.95);
    }

    .site-menu .nav-link {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section {
        padding: 65px 0;
    }

    .quick-contact {
        right: 10px;
        bottom: 10px;
    }
}
/* Page hero */

.page-hero {
    background: linear-gradient(120deg, #111827, #1e3a8a);
    color: white;
    padding: 150px 0 80px;
}

    .page-hero h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .page-hero p {
        color: #d1d5db;
        font-size: 18px;
        margin: 0;
    }

/* Product list */

.product-search-box {
    max-width: 520px;
}

    .product-search-box input {
        padding: 15px 18px;
        border-radius: 10px;
        border: 1px solid var(--border);
    }

.category-block {
    margin-bottom: 75px;
}

.product-detail-image {
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

    .product-detail-image img {
        width: 100%;
        height: 520px;
        object-fit: contain;
        padding: 30px;
    }

.product-category {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 16px;
}

.product-detail-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.product-detail-description {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline-dark-custom {
    border: 1px solid var(--dark);
    color: var(--dark);
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
}

    .btn-outline-dark-custom:hover {
        background: var(--dark);
        color: white;
    }

.technical-table-wrapper {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
}

    .technical-table-wrapper h3 {
        font-weight: 800;
        margin-bottom: 20px;
    }

.technical-table th {
    width: 260px;
    color: var(--dark);
}

.technical-table td {
    color: var(--muted);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 60px;
    }

        .page-hero h1 {
            font-size: 34px;
        }

    .product-detail-image img {
        height: 340px;
    }

    .product-detail-title {
        font-size: 32px;
    }
}
/* Contact */

.contact-info-box,
.contact-form-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

    .contact-info-box h3,
    .contact-form-box h3 {
        font-weight: 800;
        margin-bottom: 18px;
    }

    .contact-info-box p {
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 30px;
    }

.contact-info-item {
    border-top: 1px solid var(--border);
    padding: 18px 0;
}

    .contact-info-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .contact-info-item span {
        color: var(--muted);
    }

.contact-form-box .form-control {
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-form-box textarea {
    resize: vertical;
}

.map-section iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}
/* Corporate */

.corporate-image-box {
    border-radius: 20px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid var(--border);
    min-height: 420px;
}

    .corporate-image-box img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
    }

.corporate-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    transition: 0.25s;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    }

    .value-card h4 {
        font-weight: 800;
        margin-bottom: 14px;
    }

    .value-card p {
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
}

    .why-card strong {
        display: inline-block;
        color: var(--blue);
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 14px;
    }

    .why-card h5 {
        font-weight: 800;
        margin-bottom: 12px;
    }

    .why-card p {
        color: var(--muted);
        line-height: 1.6;
        margin: 0;
    }

/* Production */

.production-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    transition: 0.25s;
}

    .production-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.07);
    }

    .production-step span {
        display: inline-block;
        color: var(--blue);
        font-size: 28px;
        font-weight: 900;
        margin-bottom: 18px;
    }

    .production-step h4 {
        font-weight: 800;
        margin-bottom: 14px;
    }

    .production-step p {
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

.gallery-card {
    width: 100%;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f3f4f6;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card {
    width: 100%;
    height: 320px;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f3f4f6;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
        padding: 10px;
    }

.production-highlight {
    background: linear-gradient(120deg, #111827, #1e3a8a);
    color: white;
    border-radius: 24px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .production-highlight span {
        color: #bfdbfe;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .production-highlight h2 {
        font-weight: 900;
        margin: 12px 0;
    }

    .production-highlight p {
        color: #d1d5db;
        margin: 0;
        max-width: 650px;
    }

@media (max-width: 768px) {
    .production-highlight {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .corporate-image-box,
    .corporate-image-box img {
        min-height: 300px;
    }
}

.map-section {
    padding: 70px 0;
    background: var(--light);
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

@media (max-width: 768px) {
    .map-frame {
        height: 350px;
        border-radius: 16px;
    }
}

.page-hero-small {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

    .info-card span {
        display: inline-block;
        color: var(--primary);
        font-weight: 800;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    .info-card h3 {
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 14px;
    }

    .info-card p {
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 0;
    }

.value-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: 0.25s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    .value-card h4 {
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 12px;
    }

    .value-card p {
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 0;
    }

.cta-section {
    padding: 70px 0;
}

.cta-box {
    background: linear-gradient(120deg, #0f172a, #1d4ed8);
    color: #ffffff;
    border-radius: 26px;
    padding: 55px;
    text-align: center;
}

    .cta-box h2 {
        font-weight: 900;
        margin-bottom: 15px;
    }

    .cta-box p {
        color: #dbeafe;
        max-width: 700px;
        margin: 0 auto 25px;
        line-height: 1.7;
    }

.process-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
    transition: 0.25s ease;
}

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

.process-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.process-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.gallery-card {
    width: 100%;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f3f4f6;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
/* =====================================================
   CBC ENDÜSTRİ FOOTER
===================================================== */

.cbc-footer {
    position: relative;
    padding: 80px 0 0;
    color: #cbd5e1;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.20), transparent 45%), linear-gradient(135deg, #061426 0%, #0a2340 50%, #06182c 100%);
    overflow: hidden;
}

    .cbc-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
        background-size: 40px 40px;
    }

    .cbc-footer .container {
        position: relative;
        z-index: 1;
    }

.footer-company {
    padding-right: 22px;
}

.footer-brand {
    display: inline-block;
    color: #ffffff;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 22px;
}

    .footer-brand:hover {
        color: #ffffff;
    }

.footer-description {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: rgba(148, 163, 184, 0.24);
}

.footer-hours-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    margin-bottom: 18px;
}

    .footer-hours-title svg {
        width: 32px;
        height: 32px;
        fill: none;
        stroke: #38a0ff;
        stroke-width: 1,8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .footer-hours-title strong {
        font-size: 17px;
    }

.footer-hours p {
    margin: 0 0 5px 44px;
    color: #dbe4ef;
}

.footer-hours span {
    display: block;
    margin-left: 44px;
    color: #38a0ff;
    font-size: 19px;
    font-weight: 800;
}

.footer-column {
    height: 100%;
    padding-left: 18px;
    border-left: 1px solid rgba(148, 163, 184, 0.18);
}

    .footer-column h4 {
        color: #ffffff;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 11px;
    }

.footer-title-line {
    width: 42px;
    height: 2px;
    margin-bottom: 24px;
    background: #38a0ff;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    transition: 0.25s ease;
}

    .footer-contact-item:last-child {
        border-bottom: 0;
    }

    .footer-contact-item:hover {
        color: #ffffff;
        transform: translateX(4px);
    }

.footer-icon {
    width: 35px;
    min-width: 35px;
    padding-top: 2px;
}

    .footer-icon svg {
        width: 31px;
        height: 31px;
        fill: none;
        stroke: #38a0ff;
        stroke-width: 1,7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.footer-contact-item small {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 3px;
}

.footer-contact-item span {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.footer-address span {
    color: #dbe4ef;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }

        .footer-links li:last-child {
            border-bottom: 0;
        }

    .footer-links a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 0;
        color: #dbe4ef;
        text-decoration: none;
        font-size: 16px;
        transition: 0.25s ease;
    }

        .footer-links a > span {
            color: #38a0ff;
            font-size: 30px;
            font-weight: 300;
            line-height: 0;
            transform: translateY(-1px);
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 7px;
        }

.footer-certificates a {
    font-size: 15px;
}

.footer-bottom {
    margin-top: 55px;
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

    .footer-bottom p {
        color: #94a3b8;
        margin: 0;
        font-size: 14px;
    }

    .footer-bottom strong {
        color: #dbe4ef;
        margin-right: 4px;
    }

/* Tablet */
@media (max-width: 991px) {
    .cbc-footer {
        padding-top: 60px;
    }

    .footer-column {
        padding-left: 0;
        border-left: 0;
    }

    .footer-company {
        padding-right: 0;
    }
}

/* Telefon */
@media (max-width: 767px) {
    .cbc-footer {
        padding-top: 48px;
    }

    .footer-brand {
        font-size: 25px;
    }

    .footer-column h4 {
        font-size: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 24px 10px;
    }

        .footer-bottom strong {
            display: block;
            margin-bottom: 6px;
        }
}

.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .floating-whatsapp svg {
        width: 34px;
        height: 34px;
        fill: currentColor;
    }

    .floating-whatsapp:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 16px 38px rgba(34, 197, 94, 0.45);
    }

@media (max-width: 767px) {
    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
    }

        .floating-whatsapp svg {
            width: 30px;
            height: 30px;
        }
}

.site-logo {
    width: 170px;
    height: 100px;
    display: block;
}

.footer-logo {
    width: 190px;
    height: auto;
    display: block;
}

.hero-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.btn-contact-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

    .btn-contact-hero:hover {
        background: #2563eb;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
    }

.about-image-box {
    width: 100%;
    max-width: 620px;
    height: 420px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 22px;
}

    .about-image-box img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

.production-preview {
    width: 100%;
    max-width: 620px;
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .production-preview img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
        padding: 35px;
    }

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(7px);
}

    .gallery-lightbox.active {
        display: flex;
    }

    .gallery-lightbox img {
        max-width: 92vw;
        max-height: 88vh;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    }

.gallery-lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

    .gallery-lightbox-close:hover {
        background: rgba(255, 255, 255, 0.24);
        transform: scale(1.05);
    }

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .gallery-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        height: 240px;
        border-radius: 16px;
    }

        .gallery-card img {
            padding: 6px;
        }

    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
}

.product-description-box {
    margin: 25px 0 30px;
    padding: 24px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 12px;
}

.product-detail-description {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.85;
    white-space: pre-line;
}

@media (max-width: 576px) {
    .product-description-box {
        padding: 18px;
    }

    .product-detail-description {
        font-size: 15px;
    }
}
/* =====================================================
   ÜRÜNLER SAYFASI HERO
===================================================== */

/* Ürünler sayfası navbar altı banner */

.products-banner {
    position: relative;
    width: 100%;
    margin-top: 250px;
    overflow: hidden;
    background: #061426;
}

.products-banner-image {
    width: 100%;
    height: auto;
    max-height: 720px;
    display: block;
    object-fit: contain;
}

.products-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(4, 16, 31, 0.62) 0%, rgba(4, 16, 31, 0.36) 55%, rgba(4, 16, 31, 0.18) 100% );
}

.products-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    text-align: center;
}

    .products-banner-content h1 {
        margin: 0 0 14px;
        color: #ffffff;
        font-size: 68px;
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -1px;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    }

    .products-banner-content p {
        width: min(760px, 90%);
        margin: 0 auto;
        color: #ffffff;
        font-size: 19px;
        line-height: 1.6;
        text-align: center;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    }

@media (max-width: 991px) {
    .products-banner-content {
        padding-top: 70px;
    }

        .products-banner-content h1 {
            font-size: 52px;
        }

        .products-banner-content p {
            font-size: 17px;
        }
}

@media (max-width: 576px) {
    .products-banner-content {
        padding: 50px 20px 0;
    }

        .products-banner-content h1 {
            font-size: 40px;
        }

        .products-banner-content p {
            width: 100%;
            font-size: 14px;
            line-height: 1.5;
        }
}

.section-title {
    width: 100%;
    text-align: center;
}

    .section-title h2,
    .section-title p {
        text-align: center;
    }

    .section-title p {
        margin-left: auto;
        margin-right: auto;
    }

.contact-info-item a {
    display: block;
    margin-bottom: 6px;
}
/* Ana sayfa üretim tanıtım alanı */

.home-production-section {
    padding: 100px 0;
    background: #ffffff;
}

.home-production-image-box {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 22px;
    background: #f1f5f9;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.home-production-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.home-production-image-box:hover .home-production-image {
    transform: scale(1.03);
}

.home-production-content {
    padding-left: 25px;
}

.home-production-small {
    display: inline-block;
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-production-content h2 {
    margin: 0 0 24px;
    color: #0f172a;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
}

.home-production-content p {
    max-width: 610px;
    margin: 0 0 28px;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .home-production-section {
        padding: 70px 0;
    }

    .home-production-image-box {
        height: 380px;
    }

    .home-production-content {
        padding-left: 0;
        text-align: center;
    }

        .home-production-content h2 {
            font-size: 40px;
        }

        .home-production-content p {
            margin-left: auto;
            margin-right: auto;
        }
}

@media (max-width: 576px) {
    .home-production-section {
        padding: 55px 0;
    }

    .home-production-image-box {
        height: 280px;
        border-radius: 16px;
    }

    .home-production-content h2 {
        font-size: 33px;
    }

    .home-production-content p {
        font-size: 15px;
    }
}
/* Çalışma ilkeleri kartları */

.principle-card {
    height: 100%;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid transparent;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Kalite */
.row > div:nth-child(1) .principle-card {
    background: #eef4ff;
    border-color: #c7d8f7;
}

/* Güven */
.row > div:nth-child(2) .principle-card {
    background: #eef9f5;
    border-color: #c8e8dc;
}

/* Teknik Destek */
.row > div:nth-child(3) .principle-card {
    background: #f3f1ff;
    border-color: #d9d2fa;
}

/* ==================================================
   SİTE GENELİ KUTU RENKLERİ
================================================== */

:root {
    --site-box-background: #eef4ff;
    --site-box-border: #cbd9ee;
    --site-box-hover: #e1ebfa;
    --site-box-shadow: rgba(15, 23, 42, 0.08);
}



/* =========================================
   SİTE GENELİ CTA RENKLİ KUTULAR
========================================= */

:root {
    --box-gradient: linear-gradient( 135deg, #10234f 0%, #173b91 55%, #2856d8 100% );
    --box-gradient-hover: linear-gradient( 135deg, #142b60 0%, #1d46a5 55%, #3267ef 100% );
}

/* Sitedeki bütün kartlar */
.stat-card,
.info-card,
.process-card,
.principle-card,
.value-card,
.corporate-card,
.contact-card,
.contact-info-card,

.gallery-card,
.home-production-image-box,
.about-image-box,
[class*="feature-card"],
[class*="service-card"] {
    background: var(--box-gradient) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 16px 38px rgba(15, 35, 79, 0.20) !important;
}

    /* Başlıkların rengi */
    .stat-card h3,
   
    .process-card h4,
    .principle-card h3,
    .principle-card h4,
    .value-card h3,
    .info-card h3,
    .value-card h4,
    .corporate-card h3,
    .corporate-card h4,
    .contact-card h3,
    .contact-card h4 {
        color: #ffffff !important;
    }

    /* Açıklama yazılarının rengi */
    .stat-card p,
    
    .process-card p,
    .principle-card p,
    .value-card p,
    .info-card p,
    .corporate-card p,
    .contact-card p,
    .contact-info-card p
     {
        color: rgba(255, 255, 255, 0.82) !important;
    }

    /* Hover efekti */
    .stat-card:hover,
    
    .process-card:hover,
    .principle-card:hover,
    .value-card:hover,
    .info-card:hover,
    .corporate-card:hover,
    .contact-card:hover,
    .contact-info-card:hover,
    .gallery-card:hover {
        background: var(--box-gradient-hover) !important;
        transform: translateY(-5px);
        box-shadow: 0 22px 46px rgba(15, 35, 79, 0.30) !important;
    }
/* Misyon ve vizyon küçük başlıkları */
.info-card {
    background: linear-gradient( 135deg, #10234f 0%, #173b91 55%, #2856d8 100% ) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

    .info-card > span {
        color: #ffffff !important;
    }

    .info-card h3 {
        color: #ffffff !important;
    }

    .info-card p {
        color: rgba(255, 255, 255, 0.85) !important;
    }
/* Navbar bütün sayfalarda aynı renkte olsun */
.site-header,
.site-navbar {
    background: #111f3d !important;
}

.site-navbar {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

    /* Menü yazıları */
    .site-navbar .nav-link,
    .site-navbar .language-switcher a,
    .site-navbar .language-switcher span {
        color: #ffffff !important;
    }

        .site-navbar .nav-link:hover,
        .site-navbar .language-switcher a:hover {
            color: #60a5fa !important;
        }



/* Üretim sayfası giriş metni */

.production-intro-section {
    padding: 90px 0;
}

.production-intro-centered {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

    .production-intro-centered .section-title {
        width: 100%;
        margin-bottom: 28px;
        text-align: center;
    }

        .production-intro-centered .section-title span {
            display: block;
            margin-bottom: 12px;
            text-align: center;
        }

        .production-intro-centered .section-title h2 {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

    .production-intro-centered p {
        max-width: 900px;
        margin: 0 auto 18px;
        text-align: center;
        line-height: 1.8;
    }

    .production-intro-centered .lead-text {
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .production-intro-section {
        padding: 65px 0;
    }

    .production-intro-centered {
        padding: 0 15px;
    }
}
/* Gerçek bayrak görselli dil menüsü */

.language-dropdown-button {
    width: 64px;
    height: 42px;
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9px;
    color: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
}

    .language-dropdown-button:hover,
    .language-dropdown-button:focus {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.45);
        color: #ffffff;
    }

.language-current-flag {
    width: 30px;
    height: 20px;
    display: block;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.language-dropdown-button.dropdown-toggle::after {
    margin-left: 1px;
    border-top-color: currentColor;
}

.language-dropdown-menu {
    min-width: 190px;
    margin-top: 10px !important;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.language-dropdown-item {
    min-height: 46px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

    .language-dropdown-item:hover {
        background: #eef4ff;
        color: #173b91;
    }

    .language-dropdown-item.active {
        background: #e6efff;
        color: #173b91;
    }

.language-flag-image {
    width: 30px;
    height: 20px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.20);
}

.language-check {
    margin-left: auto;
    color: #2563eb;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .language-dropdown {
        margin-top: 14px;
        margin-bottom: 8px;
    }
}
/* ==================================================
   MODERN İLETİŞİM SAYFASI
================================================== */

.contact-modern-section {
    padding: 90px 0;
    background: linear-gradient( 180deg, #f4f7fc 0%, #ffffff 100% );
}

.contact-success-alert {
    padding: 17px 20px;
    margin-bottom: 30px;
    border: 1px solid #b9e5c8;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
}

.contact-modern-card {
    padding: 42px;
    background: #ffffff !important;
    border: 1px solid #dce5f1 !important;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09) !important;
}

.contact-card-heading {
    margin-bottom: 32px;
}

    .contact-card-heading > span {
        display: block;
        margin-bottom: 9px;
        color: #2563eb !important;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .contact-card-heading h2 {
        margin: 0;
        color: #0f172a !important;
        font-size: 32px;
        line-height: 1.2;
        font-weight: 900;
    }

/* İletişim bilgileri */

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .contact-detail-row:hover {
        transform: translateY(-2px);
        border-color: #b9cff7;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.09);
    }

.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient( 135deg, #173b91, #3267ef );
    border-radius: 12px;
}

    .contact-detail-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1,8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.contact-detail-content {
    min-width: 0;
}

    .contact-detail-content strong {
        display: block;
        margin-bottom: 5px;
        color: #0f172a;
        font-size: 14px;
        font-weight: 800;
    }

    .contact-detail-content a,
    .contact-detail-content span {
        display: block;
        width: fit-content;
        color: #526075;
        font-size: 14px;
        line-height: 1.7;
        overflow-wrap: anywhere;
        text-decoration: none;
    }

        .contact-detail-content a:hover {
            color: #2563eb;
        }

/* Form */

.modern-contact-form .form-label {
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 750;
}

.modern-form-control {
    min-height: 52px;
    padding: 13px 15px;
    background: #f8fafc !important;
    border: 1px solid #d8e1ec !important;
    border-radius: 11px !important;
    color: #0f172a !important;
    font-size: 15px;
    box-shadow: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

    .modern-form-control:focus {
        background: #ffffff !important;
        border-color: #2563eb !important;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10) !important;
    }

.modern-message-area {
    min-height: 165px;
    resize: vertical;
}

.contact-submit-modern {
    min-height: 52px;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient( 135deg, #173b91, #3267ef );
    border: 0;
    border-radius: 11px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .contact-submit-modern svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1,8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .contact-submit-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 13px 28px rgba(37, 99, 235, 0.27);
    }

/* Harita */

.contact-map-modern-section {
    padding: 0 0 90px;
    background: #ffffff;
}

.contact-map-modern-card {
    overflow: hidden;
    background: #ffffff !important;
    border: 1px solid #dce5f1 !important;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09) !important;
}

.contact-map-modern-heading {
    padding: 38px 35px 28px;
    text-align: center;
}

    .contact-map-modern-heading > span {
        display: block;
        margin-bottom: 9px;
        color: #2563eb !important;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .contact-map-modern-heading h2 {
        margin: 0 0 11px;
        color: #0f172a !important;
        font-size: 34px;
        font-weight: 900;
    }

    .contact-map-modern-heading p {
        max-width: 760px;
        margin: 0 auto;
        color: #64748b !important;
        font-size: 15px;
        line-height: 1.7;
    }

.contact-map-frame {
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #e2e8f0;
}

    .contact-map-frame iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

.contact-map-modern-footer {
    padding: 22px;
    text-align: center;
}

.contact-map-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    background: #2563eb;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .contact-map-modern-button:hover {
        background: #173b91;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(37, 99, 235, 0.22);
    }

/* Tablet */

@media (max-width: 991px) {
    .contact-modern-section {
        padding: 70px 0;
    }

    .contact-modern-card {
        padding: 34px;
    }

    .contact-map-modern-section {
        padding-bottom: 70px;
    }
}

/* Telefon */

@media (max-width: 576px) {
    .contact-modern-section {
        padding: 55px 0;
    }

    .contact-modern-card {
        padding: 27px 20px;
        border-radius: 18px;
    }

    .contact-card-heading h2 {
        font-size: 27px;
    }

    .contact-detail-row {
        padding: 14px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .contact-submit-modern {
        width: 100%;
    }

    .contact-map-modern-card {
        border-radius: 18px;
    }

    .contact-map-modern-heading {
        padding: 30px 20px 23px;
    }

        .contact-map-modern-heading h2 {
            font-size: 28px;
        }

    .contact-map-frame {
        height: 340px;
    }
}

/* =====================================================
   SON NAVBAR VE MOBİL UYUMLULUK AYARLARI
===================================================== */

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

.site-main {
    min-height: 40vh;
}

.site-header {
    width: 100%;
}

.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-logo {
    width: 170px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.site-menu .nav-link {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
}

    .site-menu .nav-link.active {
        color: #60a5fa !important;
    }

        .site-menu .nav-link.active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 0;
            bottom: 5px;
            height: 2px;
            border-radius: 999px;
            background: #60a5fa;
        }

/* Özel hamburger butonu */
.custom-navbar-toggler {
    display: none;
    width: 52px;
    height: 48px;
    flex: 0 0 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none !important;
    cursor: pointer;
}

    .custom-navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.10);
    }

    .custom-navbar-toggler:focus,
    .custom-navbar-toggler:active {
        outline: none;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.22) !important;
    }

.custom-toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    flex-shrink: 0;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.custom-navbar-toggler[aria-expanded="true"] .custom-toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-navbar-toggler[aria-expanded="true"] .custom-toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-navbar-toggler[aria-expanded="true"] .custom-toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Bootstrap tablolarının mobilde taşmaması */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Tablet ve telefon */
@media (max-width: 991.98px) {
    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1050;
    }

    .site-navbar {
        padding: 8px 0;
        background: #111f3d !important;
    }

        .site-navbar .container {
            flex-wrap: wrap;
            gap: 8px;
        }

    .site-logo {
        width: 155px;
        max-height: 92px;
    }

    .custom-navbar-toggler {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .site-navbar .navbar-collapse {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 8px;
        padding: 10px 14px 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        background: #0b1d39;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    }

    .site-navbar .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .site-navbar .nav-item {
        width: 100%;
    }

    .site-navbar .nav-link {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .site-navbar .nav-item:last-child .nav-link {
        border-bottom: 0;
    }

    .site-menu .nav-link.active::after {
        left: 8px;
        right: auto;
        bottom: 5px;
        width: 34px;
    }

    .language-dropdown {
        width: 100%;
        margin: 12px 0 0 !important;
    }

    .language-dropdown-button {
        width: 100%;
        min-height: 46px;
        justify-content: space-between;
        padding-right: 14px;
        padding-left: 14px;
    }

    .language-dropdown-menu {
        width: 100%;
        min-width: 100%;
    }

    .hero,
    .hero-section {
        min-height: 100svh;
        padding: 130px 0 64px;
    }

    .hero-content {
        max-width: 660px;
        padding-top: 36px;
    }

        .hero-content h1 {
            font-size: clamp(38px, 7vw, 48px);
        }

        .hero-content p {
            font-size: 17px;
            line-height: 1.75;
        }

    .section,
    .home-production-section,
    .production-intro-section,
    .contact-modern-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .section-title {
        margin-bottom: 36px;
    }

        .section-title h2 {
            font-size: 34px;
        }

    .page-hero {
        padding: 135px 0 62px;
    }

        .page-hero h1 {
            font-size: 38px;
        }

    .products-banner {
        margin-top: 108px !important;
        min-height: 380px;
    }

    .products-banner-image {
        width: 100%;
        height: 380px;
        max-height: none;
        object-fit: cover;
    }

    .products-banner-content {
        justify-content: center;
        padding: 35px 24px;
    }

        .products-banner-content h1 {
            font-size: 48px;
        }

    .home-production-content {
        padding-left: 0;
        text-align: center;
    }

        .home-production-content p {
            margin-right: auto;
            margin-left: auto;
        }

    .home-production-image-box,
    .about-image-box,
    .production-preview {
        height: 370px;
    }

    .product-detail-image img {
        height: 390px;
        padding: 20px;
    }

    .product-detail-title {
        font-size: 36px;
    }

    .contact-modern-card {
        padding: 32px;
    }

    .contact-map-frame {
        height: 380px;
    }

    .production-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbc-footer .row {
        row-gap: 45px;
    }
}

/* Telefon */
@media (max-width: 767.98px) {
    .container {
        --bs-gutter-x: 1.5rem;
    }

    .site-logo {
        width: 145px;
        max-height: 84px;
    }

    .custom-navbar-toggler {
        width: 48px;
        height: 44px;
        flex-basis: 48px;
    }

    .hero,
    .hero-section {
        min-height: 100svh;
        padding: 118px 0 50px;
    }

    .hero-content {
        padding-top: 28px;
    }

        .hero-content h1 {
            margin-bottom: 18px;
            font-size: clamp(36px, 11vw, 46px);
            line-height: 1.08;
            overflow-wrap: anywhere;
        }

        .hero-content p {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.7;
        }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

        .hero-buttons > a,
        .hero-buttons > button {
            flex: 1 1 calc(50% - 6px);
            min-height: 52px;
            padding-right: 14px;
            padding-left: 14px;
            text-align: center;
        }

    .section,
    .home-production-section,
    .production-intro-section,
    .contact-modern-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .section-title {
        margin-bottom: 30px;
    }

        .section-title h2 {
            font-size: 30px;
            line-height: 1.2;
        }

        .section-title p {
            font-size: 15px;
            line-height: 1.7;
        }

    .page-hero {
        padding: 122px 0 52px;
    }

        .page-hero h1 {
            font-size: 33px;
            overflow-wrap: anywhere;
        }

        .page-hero p {
            font-size: 16px;
        }

    .products-banner {
        margin-top: 98px !important;
        min-height: 330px;
    }

    .products-banner-image {
        height: 330px;
        object-fit: cover;
    }

    .products-banner-content {
        justify-content: center;
        padding: 28px 18px;
    }

        .products-banner-content h1 {
            font-size: 38px;
        }

        .products-banner-content p {
            width: 100%;
            font-size: 14px;
            line-height: 1.55;
        }

    .about-box,
    .info-card,
    .value-card,
    .why-card,
    .production-step,
    .process-card,
    .principle-card,
    .contact-info-box,
    .contact-form-box {
        padding: 24px;
        border-radius: 16px;
    }

    .product-card img {
        height: 220px;
    }

    .product-card-body {
        padding: 18px;
    }

    .product-detail-image {
        border-radius: 15px;
    }

        .product-detail-image img {
            height: 310px;
            padding: 14px;
        }

    .product-detail-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .product-description-box {
        padding: 18px;
    }

    .product-actions {
        width: 100%;
    }

        .product-actions > a,
        .product-actions > button {
            width: 100%;
            text-align: center;
        }

    .home-production-image-box,
    .about-image-box,
    .production-preview,
    .corporate-image-box,
    .corporate-image-box img {
        height: 290px;
        min-height: 290px;
        border-radius: 16px;
    }

        .production-preview img {
            padding: 18px;
        }

    .home-production-content h2 {
        font-size: 31px;
    }

    .gallery-card {
        height: 250px;
        border-radius: 16px;
    }

    .production-highlight,
    .cta-box {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .contact-modern-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .contact-card-heading h2 {
        font-size: 27px;
    }

    .contact-detail-row {
        padding: 14px;
    }

    .contact-submit-modern {
        width: 100%;
    }

    .contact-map-modern-heading {
        padding: 28px 20px 22px;
    }

        .contact-map-modern-heading h2 {
            font-size: 28px;
        }

    .contact-map-frame,
    .map-frame,
    .map-section iframe {
        height: 330px;
    }

    .cbc-footer {
        padding-top: 50px;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-column,
    .footer-company {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .footer-bottom {
        margin-top: 38px;
    }

    .floating-whatsapp {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }
}

/* Küçük telefon */
@media (max-width: 479.98px) {
    .site-logo {
        width: 132px;
        max-height: 78px;
    }

    .custom-navbar-toggler {
        width: 46px;
        height: 42px;
        flex-basis: 46px;
    }

    .custom-toggler-line {
        width: 23px;
    }

    .hero,
    .hero-section {
        padding-top: 108px;
    }

    .hero-content h1 {
        font-size: clamp(33px, 10.5vw, 42px);
    }

    .hero-buttons > a,
    .hero-buttons > button {
        flex-basis: 100%;
        width: 100%;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .products-banner {
        margin-top: 90px !important;
    }

    .products-banner-content h1 {
        font-size: 34px;
    }

    .product-card img {
        height: 205px;
    }

    .gallery-card {
        height: 225px;
    }

    .contact-detail-row {
        gap: 11px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .footer-contact-item {
        gap: 11px;
    }

        .footer-contact-item span {
            font-size: 14px;
        }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Navbar ile ürün bannerı arasındaki boşluğu kaldır */
.site-header,
.site-navbar {
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
}

.site-main {
    margin: 0 !important;
    padding: 0 !important;
}

.products-banner {
    margin-top: 149px !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    transform: translateY(-6px);
}

.products-banner-image {
    display: block;
    margin: 0;
}

/* Mobil */
@media (max-width: 991.98px) {
    .products-banner {
        margin-top: 149px !important;
    }
}
.corporate-mission-vision-text {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 15px;
    line-height: 1.9;
    white-space: pre-line;
}
/* ==================================================
   ANA SAYFA İSTATİSTİK KUTULARI
================================================== */

.stats-wrapper {
    padding: 45px 0;
}

    .stats-wrapper .row {
        align-items: stretch;
    }

.stat-card,
.stat-item {
    width: 100%;
    min-height: 130px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
}

    /* 10+, 100%, 7/24, CBC */
    .stat-card h3,
    .stat-item h3 {
        margin: 0 0 12px;
        color: #ffffff !important;
        font-size: clamp(30px, 2.6vw, 40px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    /* Ürün Grubu, Kalite Odaklı Hizmet... */
    .stat-card p,
    .stat-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.92) !important;
        font-size: clamp(15px, 1.25vw, 18px);
        line-height: 1.35;
        font-weight: 500;
    }

/* Tablet */
@media (max-width: 991.98px) {
    .stats-wrapper {
        padding: 36px 0;
    }

    .stat-card,
    .stat-item {
        min-height: 120px;
        padding: 22px 14px;
    }

        .stat-card h3,
        .stat-item h3 {
            font-size: 34px;
            margin-bottom: 10px;
        }

        .stat-card p,
        .stat-item p {
            font-size: 16px;
        }
}

/* Telefon */
@media (max-width: 576px) {
    .stats-wrapper {
        padding: 30px 0;
    }

    .stat-card,
    .stat-item {
        min-height: 105px;
        padding: 18px 12px;
        border-radius: 12px;
    }

        .stat-card h3,
        .stat-item h3 {
            font-size: 29px;
            margin-bottom: 8px;
        }

        .stat-card p,
        .stat-item p {
            font-size: 14px;
            line-height: 1.3;
        }
}
/* Misyon ve vizyon açıklama yazıları */
.corporate-mission-vision-text {
    font-size: 20px !important;
    line-height: 1.75 !important;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 991.98px) {
    .corporate-mission-vision-text {
        font-size: 17px !important;
    }
}

/* Telefon */
@media (max-width: 575.98px) {
    .corporate-mission-vision-text {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }
}
/* Kurumsal sayfa misyon / vizyon kutuları */
.info-card {
    padding: 24px 26px !important;
}

    .info-card h3 {
        margin-bottom: 10px !important;
        font-size: 26px !important;
    }

.corporate-mission-vision-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    align-items: start;
}

.process-item {
    text-align: center;
}

    .process-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1b1f3b;
        margin-bottom: 14px;
    }

        .process-item h3 i {
            color: #2563eb;
            margin-left: 10px;
            font-size: 22px;
        }

    .process-item p {
        font-size: 16px;
        line-height: 1.8;
        color: #6b7280;
        margin: 0;
    }

.process-item-center {
    grid-column: 1 / span 2;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-item-center {
        grid-column: auto;
        max-width: 100%;
    }
}
/* MOBİL MENÜ BUTONU */
.custom-navbar-toggler {
    width: 50px !important;
    height: 44px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    outline: none !important;
}

    .custom-navbar-toggler:focus,
    .custom-navbar-toggler:active {
        box-shadow: none !important;
        outline: none !important;
    }

.custom-toggler-line {
    display: block !important;
    width: 25px !important;
    height: 2px !important;
    flex-shrink: 0;
    border-radius: 20px;
    background-color: #ffffff !important;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Menü açıldığında çarpı şekli */
.custom-navbar-toggler[aria-expanded="true"]
.custom-toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-navbar-toggler[aria-expanded="true"]
.custom-toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-navbar-toggler[aria-expanded="true"]
.custom-toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Masaüstünde butonu gösterme */
@media (min-width: 992px) {
    .custom-navbar-toggler {
        display: none !important;
    }
}

.production-operations-section {
    background: #ffffff;
    padding: 82px 0 56px;
}

.production-operations-title {
    margin-bottom: 54px;
    text-align: center;
}

    .production-operations-title h2 {
        margin: 0;
        color: #17243c;
        font-size: clamp(34px, 4vw, 50px);
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.8px;
    }

.production-operation-row {
    margin-bottom: 34px;
}

    .production-operation-row:last-child {
        margin-bottom: 0;
    }

.production-operation-item {
    height: 100%;
}

.production-operation-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.production-operation-left {
    text-align: right;
    padding-right: 38px;
}

    .production-operation-left .production-operation-heading {
        justify-content: flex-end;
    }

.production-operation-right {
    text-align: left;
    padding-left: 38px;
}

    .production-operation-right .production-operation-heading {
        justify-content: flex-start;
    }

.production-operation-heading h3 {
    margin: 0;
    color: #262a31;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 700;
}

.production-operation-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1377c9;
}

    .production-operation-icon svg {
        width: 34px;
        height: 34px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1,7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.production-operation-item p {
    max-width: 650px;
    margin: 0;
    color: #7a7d82;
    font-size: 17px;
    line-height: 1.75;
}

.production-operation-left p {
    margin-left: auto;
}

.production-operation-right p {
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .production-operations-section {
        padding: 62px 0 38px;
    }

    .production-operations-title {
        margin-bottom: 40px;
    }

    .production-operation-row {
        margin-bottom: 0;
    }

    .production-operation-left,
    .production-operation-right {
        padding-right: 12px;
        padding-left: 12px;
        margin-bottom: 34px;
        text-align: left;
    }

        .production-operation-left .production-operation-heading,
        .production-operation-right .production-operation-heading {
            justify-content: flex-start;
        }

        .production-operation-left .production-operation-heading {
            flex-direction: row-reverse;
            justify-content: flex-end;
        }

        .production-operation-left p,
        .production-operation-right p {
            margin-right: 0;
            margin-left: 0;
        }
}

@media (max-width: 575.98px) {
    .production-operations-section {
        padding: 48px 0 24px;
    }

    .production-operations-title {
        margin-bottom: 32px;
    }

    .production-operation-heading {
        gap: 12px;
    }

        .production-operation-heading h3 {
            font-size: 20px;
        }

    .production-operation-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

        .production-operation-icon svg {
            width: 29px;
            height: 29px;
        }

    .production-operation-item p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* ==================================================
   ÜRETİM VE KONTROL KUTULARI
================================================== */

.production-box-section {
    padding: 75px 0;
    background: #f5f7fb;
}

.production-box-title {
    margin-bottom: 45px;
    text-align: center;
}

    .production-box-title h2 {
        margin: 0;
        color: #14223c;
        font-size: clamp(34px, 4vw, 50px);
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.7px;
    }

.production-box-card {
    height: 100%;
    min-height: 220px;
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient( 135deg, #142f68 0%, #1c438f 45%, #2f62d7 100% );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 14px 32px rgba(14, 35, 78, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .production-box-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 42px rgba(14, 35, 78, 0.26);
    }

    .production-box-card:hover {
        transform: translateY(-4px);
        border-color: rgba(38, 98, 220, 0.38);
        box-shadow: 0 18px 38px rgba(16, 39, 78, 0.13);
    }

.production-box-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .production-box-heading h3 {
        margin: 0;
        color: #ffffff !important;
        font-size: 23px;
        line-height: 1.3;
        font-weight: 750;
    }

.production-box-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
}

    .production-box-icon i {
        color: #ffffff !important;
        font-size: 23px;
        line-height: 1;
    }

.production-box-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

/* Kalite kutusu en altta, ortalı ve daha dar */
.production-quality-card {
    width: 100%;
    max-width: 820px;
    min-height: auto;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 991.98px) {
    .production-box-section {
        padding: 60px 0;
    }

    .production-box-title {
        margin-bottom: 36px;
    }

    .production-box-card {
        min-height: auto;
        padding: 27px;
    }

    .production-box-heading h3 {
        font-size: 21px;
    }
}

/* Telefon */
@media (max-width: 575.98px) {
    .production-box-section {
        padding: 48px 0;
    }

    .production-box-title {
        margin-bottom: 30px;
    }

        .production-box-title h2 {
            font-size: 30px;
        }

    .production-box-card {
        padding: 23px 20px;
        border-radius: 15px;
    }

    .production-box-heading {
        gap: 11px;
        margin-bottom: 14px;
    }

    .production-box-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 11px;
    }

        .production-box-icon i {
            font-size: 20px;
        }

    .production-box-heading h3 {
        font-size: 19px;
    }

    .production-box-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}
/* ==================================================
   ÜRÜN DETAY AÇIKLAMA KUTUSU
================================================== */

.product-description-box {
    position: relative;
    width: 100%;
    padding: 30px 34px;
    background: #ffffff;
    border: 1px solid #dce4f0;
    border-left: 5px solid #2f66df;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(20, 42, 82, 0.08);
}

.product-description-title {
    margin: 0 0 15px;
    color: #000000 !important;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 750;
}

.product-description-text {
    margin: 0;
    color: #293951 !important;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    white-space: pre-line;
    overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
    .product-description-box {
        padding: 23px 20px;
        border-radius: 13px;
    }

    .product-description-title {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .product-description-text {
        font-size: 15px;
        line-height: 1.7;
    }
}


