/*******************************************************************
*
*   BU YAZILIM "aCadir" TARAFINDAN KODLANMISTIR.
*   PHP8 - SQLITE - HTML - CSS - JS
*
*   2015 - 2026                          aCadir@gmail.com
********************************************************************/

/* ====================================================
   FROM: _inc_ust.html
   ==================================================== */

:root {
            --brand-navy: #0d223a;
            --brand-navy-dark: #071524;
            --brand-navy-light: #16365c;
            --brand-blue: #0056b3;
            --brand-blue-accent: #0077ff;
            --brand-blue-light: #e8f2ff;
            --brand-gold: #c89d4d;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
            --radius-xs: 4px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(13, 34, 58, 0.06);
            --shadow-hover: 0 12px 30px rgba(13, 34, 58, 0.12);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
            color: var(--brand-navy);
            font-weight: 700;
        }

        img, iframe, video {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .container {
            width: 100%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Top Header Bar */
        .ust-topbar {
            background-color: var(--brand-navy-dark);
            color: #cbd5e1;
            font-size: 13px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .topbar-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #cbd5e1;
            font-weight: 500;
        }
        .topbar-item:hover { color: #ffffff; }
        .topbar-item i { color: var(--brand-blue-accent); font-size: 13px; }
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .topbar-socials {
            display: flex;
            align-items: center;
            gap: 6px;
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            padding-right: 14px;
        }
        .topbar-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff !important;
            font-size: 12px;
            transition: all 0.2s ease;
        }
        .topbar-social-link:hover {
            background: var(--brand-blue-accent);
            transform: translateY(-2px);
        }

        /* Dil Değiştirici */
        .lang-switcher {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            padding: 0;
            border-radius: 0;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }
        .lang-link {
            color: #94a3b8;
            padding: 0;
            background: transparent !important;
            transition: color 0.15s ease;
            text-decoration: none !important;
        }
        .lang-link:hover {
            color: #ffffff;
        }
        .lang-link.active {
            color: var(--brand-blue-accent);
            font-weight: 800;
        }
        .lang-sep {
            color: rgba(255, 255, 255, 0.3);
            font-size: 12px;
            margin: 0 1px;
        }

        /* Main Navigation Bar */
        .ust-navbar-wrap {
            background-color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(13, 34, 58, 0.07);
            border-bottom: 1px solid #eef2f6;
        }
        .navbar-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 88px;
        }

        /* Brand Logo */
        .site-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding: 4px 0;
        }
        .site-brand img {
            max-height: 75px;
            width: auto;
            display: block;
            object-fit: contain;
            transition: opacity 0.2s ease;
        }
        .site-brand:hover img {
            opacity: 0.92;
        }
        .site-brand-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.28rem;
            letter-spacing: -0.02em;
            color: #0f172a;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        .site-brand:hover .site-brand-text {
            color: #0284c7;
        }

        /* Menu Items */
        .navbar-nav {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 2px;
            height: 88px;
        }
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }
        .nav-link {
            color: var(--brand-navy);
            font-size: 14.5px;
            font-weight: 700;
            letter-spacing: 0.2px;
            padding: 0 16px;
            height: 100%;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            position: relative;
            transition: all 0.2s ease;
        }
        .nav-link:hover,
        .nav-item.active > .nav-link,
        .nav-item.dropdown:hover > .nav-link {
            color: var(--brand-blue-accent);
        }
        /* Active Line */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 3px;
            background-color: var(--brand-blue-accent);
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.25s ease;
        }
        .nav-link:hover::after,
        .nav-item.active > .nav-link::after,
        .nav-item.dropdown:hover > .nav-link::after {
            opacity: 1;
            transform: scaleX(1);
        }
        .nav-caret {
            font-size: 10px;
            opacity: 0.6;
            transition: transform 0.2s;
        }
        .nav-item.dropdown:hover .nav-caret {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-top: 3px solid var(--brand-blue-accent);
            box-shadow: 0 12px 30px rgba(13, 34, 58, 0.12);
            padding: 10px 0;
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all 0.2s ease;
            z-index: 1050;
        }
        .nav-item.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-item a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 20px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.15s ease;
        }
        .dropdown-item a:hover {
            color: var(--brand-blue);
            background-color: var(--brand-blue-light);
            padding-left: 24px;
        }

        /* Header CTA Button */
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--brand-blue-accent) 0%, var(--brand-blue) 100%);
            color: #ffffff !important;
            font-size: 13.5px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            width: 195px;
            height: 44px;
            box-sizing: border-box;
            border-radius: var(--radius-xs);
            margin-left: 14px;
            box-shadow: 0 4px 14px rgba(0, 119, 255, 0.25);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 119, 255, 0.35);
        }

        /* Mobile Menu Toggle & Header Actions */
        .mobile-header-actions {
            display: none;
            align-items: center;
            gap: 12px;
        }
        .mobile-toggle {
            display: none;
            background: #f8fafc;
            border: 1px solid #cbd5e1;
            color: var(--brand-navy);
            width: 44px;
            height: 44px;
            font-size: 20px;
            border-radius: var(--radius-xs);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .mobile-toggle:hover, .mobile-toggle:active {
            background: #eef2f6;
            color: var(--brand-blue-accent);
        }
        .lang-switcher-mobile-header {
            display: inline-flex;
            background: #f1f5f9;
            padding: 5px 10px;
            border-radius: var(--radius-xs);
            border: 1px solid #e2e8f0;
        }
        .lang-switcher-mobile-header .lang-link {
            color: #64748b;
            font-size: 13px;
        }
        .lang-switcher-mobile-header .lang-link.active {
            color: var(--brand-blue-accent);
            font-weight: 800;
        }
        .lang-switcher-mobile-header .lang-sep {
            color: #cbd5e1;
        }
        .mobile-nav-lang {
            display: none;
        }

        @media (max-width: 1100px) {
            .nav-link { padding: 0 10px; font-size: 13.5px; }
            .nav-cta-btn { padding: 9px 15px; font-size: 12px; margin-left: 6px; }
        }
        @media (max-width: 980px) {
            .ust-topbar { display: none !important; }
            .navbar-flex { position: relative; }
            .mobile-header-actions { display: flex; }
            .mobile-toggle { display: inline-flex; }
            .navbar-nav-wrap {
                display: none;
                position: absolute;
                top: 88px;
                left: -24px;
                right: -24px;
                width: calc(100% + 48px);
                background: #ffffff;
                border-bottom: 3px solid var(--brand-blue-accent);
                padding: 16px 24px 24px 24px;
                box-shadow: 0 16px 32px rgba(13, 34, 58, 0.15);
                max-height: calc(100vh - 90px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                z-index: 999;
            }
            .navbar-nav-wrap.show { display: block; }
            .navbar-nav {
                flex-direction: column;
                height: auto;
                align-items: stretch;
                gap: 6px;
            }
            .nav-item { height: auto; width: 100%; }
            .nav-link {
                height: auto;
                padding: 12px 14px;
                border-radius: var(--radius-xs);
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: #ffffff;
            }
            .nav-link:hover {
                background: #f8fafc;
            }
            .nav-link::after { display: none; }
            .dropdown-menu {
                display: none;
                visibility: visible;
                opacity: 1;
                transform: none;
                box-shadow: none;
                border: 1px solid #e2e8f0;
                border-left: 3px solid var(--brand-blue-accent);
                border-radius: var(--radius-xs);
                background: #f8fafc;
                margin: 5px 0 5px 50px;
                padding: 5px 0;
                min-width: 0;
            }
            .nav-item.dropdown.open .dropdown-menu {
                display: block;
            }
            .nav-item.dropdown.open .nav-caret {
                transform: rotate(180deg);
            }
            .nav-item.dropdown .nav-caret {
                padding: 6px 10px;
                margin-right: -6px;
                font-size: 12px;
                transition: transform 0.2s ease;
            }
            .nav-item-cta {
                list-style: none;
                margin-top: 8px;
            }
            .nav-cta-btn {
                margin: 0;
                width: 100%;
                justify-content: center;
                padding: 12px;
                font-size: 14px;
            }
            .mobile-nav-lang {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 18px;
                padding-top: 16px;
                border-top: 1px solid #e2e8f0;
            }
            .mobile-nav-lang-title {
                font-size: 13px;
                font-weight: 700;
                color: var(--brand-navy);
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }
            .mobile-nav-lang .lang-switcher {
                background: #f1f5f9;
                padding: 6px 12px;
                border-radius: var(--radius-xs);
                border: 1px solid #e2e8f0;
            }
            .mobile-nav-lang .lang-link {
                color: #64748b;
                font-size: 13px;
                font-weight: 600;
            }
            .mobile-nav-lang .lang-link.active {
                color: var(--brand-blue-accent);
                font-weight: 800;
            }
            .mobile-nav-lang .lang-sep {
                color: #cbd5e1;
            }
        }
        @media (max-width: 600px) {
            .site-brand img { max-height: 40px; }
            .site-brand-text { font-size: 1rem; }
            .navbar-nav-wrap {
                left: -16px;
                right: -16px;
                width: calc(100% + 32px);
                padding: 14px 16px 20px 16px;
            }
            .container {
                padding: 0 16px;
            }
        }


/* ====================================================
   FROM: _inc_alt.html
   ==================================================== */

.alt-footer {
        background-color: var(--brand-navy);
        color: #94a3b8;
        padding-top: 70px;
        border-top: 3px solid var(--brand-blue-accent);
        margin-top: auto;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }
    .footer-col h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 32px;
        height: 2.5px;
        background: var(--brand-blue-accent);
    }
    .footer-col p {
        font-size: 13.5px;
        line-height: 1.7;
        color: #cbd5e1;
    }
    .footer-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(0, 119, 255, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(0, 119, 255, 0.3);
        padding: 6px 12px;
        border-radius: var(--radius-xs);
        font-size: 11.5px;
        font-weight: 700;
        margin-top: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links a {
        color: #cbd5e1;
        font-size: 13.5px;
        font-weight: 600;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .footer-links a:hover {
        color: #ffffff;
        transform: translateX(4px);
    }
    .footer-links a i {
        color: var(--brand-blue-accent);
        font-size: 10px;
    }
    .footer-contact-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
    }
    .footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.5;
        color: #cbd5e1;
    }
    .footer-contact-list li i {
        color: var(--brand-blue-accent);
        margin-top: 3px;
        width: 16px;
        flex-shrink: 0;
    }
    .footer-social-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
    .footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff !important;
        font-size: 14px;
        transition: all 0.25s ease;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .footer-social-link:hover {
        background: var(--brand-blue-accent);
        border-color: var(--brand-blue-accent);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 24px 0;
        font-size: 13px;
        color: #94a3b8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
    }
    .footer-bottom a { color: #cbd5e1; font-weight: 500; }
    .footer-bottom a:hover { color: #ffffff; }

    /* =========================================================
       SLICK FLOATING ACTION BUTTONS (WHATSAPP & CALL)
       ========================================================= */
    .slick-floating-wrap {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
    }
    .slick-btn {
        display: flex;
        align-items: center;
        background: #ffffff;
        border-radius: 50px;
        padding: 6px 16px 6px 6px;
        width: 195px;
        box-sizing: border-box;
        box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        text-decoration: none !important;
    }
    .slick-btn:hover {
        transform: scale(1.06) translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }
    .slick-btn-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
        flex-shrink: 0;
    }
    .slick-btn-text {
        margin-left: 10px;
        font-size: 12.5px;
        font-weight: 700;
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }
    .slick-btn-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
    }
    /* WhatsApp */
    .slick-whatsapp {
        border: 2px solid #25d366;
    }
    .slick-whatsapp .slick-btn-icon {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }
    .slick-whatsapp .slick-btn-text {
        color: #128c7e;
    }
    /* Telefon */
    .slick-phone {
        border: 2px solid var(--brand-blue-accent);
    }
    .slick-phone .slick-btn-icon {
        background: linear-gradient(135deg, var(--brand-blue-accent) 0%, var(--brand-navy) 100%);
    }
    .slick-phone .slick-btn-text {
        color: var(--brand-navy);
    }

    @media (max-width: 992px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
    @media (max-width: 600px) {
        .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        .footer-bottom { flex-direction: column; text-align: center; }
        .slick-btn-text { display: none; }
        .slick-btn { width: auto; padding: 4px; border-radius: 50%; }
        .slick-floating-wrap { bottom: 18px; right: 18px; gap: 10px; }
    }


/* ====================================================
   FROM: anasayfa.html
   ==================================================== */

/* =========================================================
       HERO VIDEO BACKGROUND SECTION (Consulting & Modern Video)
       ========================================================= */
    .hero-video-wrap {
        position: relative;
        width: 100%;
        min-height: 75vh;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        display: flex;
        align-items: center;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .video-bg-container {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
        user-select: none;
        z-index: 1;
        overflow: hidden;
        opacity: 0.75;
        filter: brightness(0.9) saturate(1.1);
    }
    .video-bg-container .mbYTP_wrapper,
    .video-bg-container .playerBox,
    .video-bg-container iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100vw !important;
        height: 56.25vw !important; /* 16:9 oran */
        min-height: 100% !important;
        min-width: 177.77vh !important; /* 16:9 oran */
        transform: translate(-50%, -50%) scale(1.35) !important;
        transform-origin: center center !important;
        pointer-events: none !important;
        border: none !important;
        max-width: none !important;
    }

    @media (max-width: 980px) {
        .hero-video-wrap {
            min-height: 560px;
        }
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(7, 21, 36, 0.75) 0%, rgba(13, 34, 58, 0.50) 50%, rgba(13, 34, 58, 0.25) 100%);
        z-index: 2;
    }
    .hero-content {
        position: relative;
        z-index: 3;
        max-width: 820px;
        padding: 80px 0;
        color: #ffffff;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 119, 255, 0.2);
        border: 1px solid rgba(0, 119, 255, 0.4);
        color: #60a5fa;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
        backdrop-filter: blur(4px);
    }
    .hero-title {
        font-size: 46px;
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.5px;
        color: #ffffff;
        margin-bottom: 18px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .hero-title span {
        color: #38bdf8;
    }
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        color: #e2e8f0;
        margin-bottom: 35px;
        max-width: 720px;
        text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }
    .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .btn-hero-primary {
        background: linear-gradient(135deg, var(--brand-blue-accent) 0%, var(--brand-blue) 100%);
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 34px;
        border-radius: var(--radius-xs);
        box-shadow: 0 6px 20px rgba(0, 119, 255, 0.35);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.25s ease;
    }
    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 119, 255, 0.5);
    }
    .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(4px);
        transition: all 0.25s ease;
    }
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }
    .btn-hero-whatsapp {
        background-color: #25d366 !important;
        border: 1px solid #20ba59 !important;
        color: #ffffff !important;
        font-size: 14.5px;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
        transition: all 0.25s ease;
    }
    .btn-hero-whatsapp i {
        font-size: 1.25rem;
    }
    .btn-hero-whatsapp:hover {
        background-color: #20ba59 !important;
        border-color: #1ea951 !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }

    /* Quick Stats Bar */
    .hero-stats-bar {
        position: relative;
        z-index: 4;
        margin-top: -45px;
        margin-bottom: 50px;
    }
    .stats-card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        background: #ffffff;
        border-radius: var(--radius-md);
        box-shadow: 0 10px 30px rgba(13, 34, 58, 0.08);
        border: 1px solid var(--border-color);
        padding: 26px 30px;
    }
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        border-right: 1px solid var(--border-color);
        padding-right: 14px;
    }
    .stat-item:last-child {
        border-right: none;
        padding-right: 0;
    }
    .stat-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-sm);
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }
    .stat-number {
        font-size: 26px;
        font-weight: 900;
        color: var(--brand-navy);
        line-height: 1;
        margin-bottom: 4px;
    }
    .stat-label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-muted);
        line-height: 1.3;
    }

    /* Section Headers */
    .section-header-center {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px auto;
    }
    .section-subtitle {
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--brand-blue-accent);
        margin-bottom: 8px;
        display: inline-block;
    }
    .section-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--brand-navy);
        line-height: 1.25;
        letter-spacing: -0.5px;
    }
    .section-desc {
        font-size: 15.5px;
        color: var(--text-muted);
        margin-top: 10px;
    }

    /* Core Services Grid (Alternativkraft & Consulting style) */
    .services-section {
        padding: 60px 0 80px 0;
        background: #f8fafc;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .service-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 34px 28px;
        box-shadow: var(--shadow-card);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-blue-accent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .service-card:hover::before {
        opacity: 1;
    }
    .service-icon-box {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-sm);
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 22px;
        transition: all 0.3s ease;
    }
    .service-card:hover .service-icon-box {
        background: var(--brand-blue-accent);
        color: #ffffff;
        transform: scale(1.05);
    }
    .service-card-title {
        font-size: 19px;
        font-weight: 800;
        margin-bottom: 12px;
        color: var(--brand-navy);
    }
    .service-card-desc {
        font-size: 14px;
        color: #64748b;
        line-height: 1.65;
        margin-bottom: 20px;
        flex: 1;
    }
    .service-card-link {
        color: var(--brand-blue);
        font-size: 13.5px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .service-card:hover .service-card-link {
        color: var(--brand-blue-accent);
        gap: 10px;
    }

    /* Featured Jobs Section */
    .home-jobs-section {
        padding: 80px 0;
        background: #ffffff;
    }
    .home-jobs-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .home-job-item {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
    }
    .home-job-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: #94a3b8;
    }
    .home-job-info h3 {
        font-size: 19px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 6px;
    }
    .home-job-meta {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: #64748b;
        flex-wrap: wrap;
    }

    /* Consultation Banner */
    .consult-banner {
        background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
        border-radius: var(--radius-lg);
        padding: 50px 45px;
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        margin: 60px 0;
        box-shadow: 0 14px 35px rgba(13, 34, 58, 0.2);
    }
    .consult-banner h3 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    .consult-banner p {
        color: #cbd5e1;
        font-size: 15.5px;
        max-width: 620px;
    }

    @media (max-width: 950px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .hero-title { font-size: 34px; }
        .stats-card-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
        .stat-item { border-right: none; }
        .consult-banner { flex-direction: column; text-align: center; }
        .home-job-item { flex-direction: column; align-items: stretch; }
    }
    @media (max-width: 600px) {
        .services-grid { grid-template-columns: 1fr; }
        .hero-title { font-size: 28px; }
        .stats-card-grid { grid-template-columns: 1fr; }
    }


/* ====================================================
   FROM: sablon_genel.html
   ==================================================== */

.page-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        border-bottom: 3px solid var(--brand-blue-accent);
        color: #ffffff;
        padding: 60px 0;
        margin-bottom: 45px;
    }
    .page-hero-bg {
        position: absolute;
        inset: -15px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(4px) brightness(0.85);
        -webkit-filter: blur(4px) brightness(0.85);
        transform: scale(1.04);
        z-index: 1;
    }
    .page-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(7, 21, 36, 0.75) 0%, rgba(13, 34, 58, 0.60) 100%);
        z-index: 2;
    }
    .page-hero .container {
        position: relative;
        z-index: 3;
    }
    .page-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .page-breadcrumb a { color: #cbd5e1; font-weight: 500; }
    .page-breadcrumb a:hover { color: #ffffff; }
    .page-breadcrumb i { font-size: 11px; opacity: 0.7; }
    .page-title {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -0.6px;
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }
    .page-lead {
        font-size: 16.5px;
        color: #e2e8f0;
        margin-top: 10px;
        max-width: 820px;
        line-height: 1.6;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    .page-container {
        padding-bottom: 70px;
    }
    .page-content-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 45px;
        box-shadow: var(--shadow-sm);
    }
    .page-featured-img-wrap {
        width: 100%;
        max-height: 480px;
        overflow: hidden;
        border-radius: var(--radius-md);
        margin-bottom: 35px;
        box-shadow: var(--shadow-sm);
        background: #f1f5f9;
        display: block;
        position: relative;
    }
    .page-featured-img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
    .page-featured-img-wrap:hover .page-featured-img {
        transform: scale(1.02);
    }
    .page-body-text {
        font-size: 16px;
        line-height: 1.85;
        color: #334155;
    }
    .page-body-text p { margin-bottom: 20px; }
    .page-body-text h2, .page-body-text h3 {
        color: var(--brand-navy);
        margin: 32px 0 16px 0;
        font-weight: 800;
        letter-spacing: -0.3px;
    }
    .page-body-text ul, .page-body-text ol {
        margin: 16px 0 24px 24px;
    }
    .page-body-text li {
        margin-bottom: 8px;
    }
    .page-body-text blockquote {
        border-left: 4px solid var(--brand-blue-accent);
        padding: 14px 20px;
        margin: 24px 0;
        background: #f8fafc;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        font-style: italic;
        color: #475569;
    }
    .page-info-box {
        margin-top: 35px;
        padding: 22px 26px;
        background: #f8fafc;
        border-left: 4px solid var(--brand-blue-accent);
        border-radius: var(--radius-sm);
        font-size: 14.5px;
        color: #334155;
    }
    .page-info-box p { margin-bottom: 6px; }
    .page-info-box p:last-child { margin-bottom: 0; }

    /* Gallery Grid Section */
    .page-gallery-section {
        margin-top: 45px;
        padding-top: 35px;
        border-top: 1px solid #e2e8f0;
    }
    .page-gallery-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .page-gallery-title i {
        color: var(--brand-blue-accent);
    }
    .page-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
    }
    .gallery-item-card {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: var(--radius-sm);
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        aspect-ratio: 4 / 3;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }
    .gallery-item-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-color: var(--brand-blue-accent);
    }
    .gallery-item-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }
    .gallery-item-card:hover img {
        transform: scale(1.06);
    }
    .gallery-item-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 22px;
        transition: opacity 0.3s ease;
    }
    .gallery-item-card:hover .gallery-item-overlay {
        opacity: 1;
    }
    .gallery-item-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        color: #ffffff;
        font-size: 12.5px;
        padding: 12px 10px 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Verwandte Aktivitäten Section */
    .page-activities-section {
        margin-top: 50px;
        padding-top: 35px;
        border-top: 1px solid #e2e8f0;
    }
    .page-activities-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .page-activities-title i {
        color: var(--brand-blue-accent);
    }
    .page-activities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    .activity-sub-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: var(--radius-sm);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
    }
    .activity-sub-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.08);
        border-color: var(--brand-blue-accent);
    }
    .activity-sub-thumb {
        height: 170px;
        position: relative;
        overflow: hidden;
        background: #e2e8f0;
    }
    .activity-sub-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    .activity-sub-card:hover .activity-sub-thumb img {
        transform: scale(1.05);
    }
    .activity-sub-body {
        padding: 18px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .activity-sub-tag {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-blue-accent);
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    .activity-sub-name {
        font-size: 16px;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    .activity-sub-desc {
        font-size: 13.5px;
        color: #64748b;
        line-height: 1.55;
        margin-bottom: 14px;
        flex: 1;
    }
    .activity-sub-link {
        font-size: 13px;
        font-weight: 700;
        color: var(--brand-blue-accent);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
    }
    .activity-sub-card:hover .activity-sub-link {
        color: var(--brand-blue-accent);
    }

    @media (max-width: 768px) {
        .page-content-card { padding: 25px 20px; }
        .page-title { font-size: 26px; }
        .page-hero { padding: 40px 0; }
        .page-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .page-activities-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
        .page-gallery-grid { grid-template-columns: 1fr; }
        .page-title { font-size: 22px; }
    }


/* ====================================================
   FROM: sablon_ilan.html
   ==================================================== */

.jobs-hero {
        position: relative;
        background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 60%, var(--brand-navy-light) 100%);
        color: #ffffff;
        padding: 60px 0;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .jobs-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .jobs-breadcrumb a { color: #cbd5e1; }
    .jobs-breadcrumb a:hover { color: #ffffff; }
    .jobs-title {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
    }
    .jobs-lead {
        font-size: 16px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 780px;
        line-height: 1.6;
    }

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

    /* Live Search & Filter Bar */
    .jobs-filter-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: var(--shadow-card);
        margin-bottom: 40px;
    }
    .filter-grid {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        gap: 16px;
        align-items: center;
    }
    .filter-input-wrap {
        position: relative;
    }
    .filter-input-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        font-size: 15px;
    }
    .filter-input {
        width: 100%;
        padding: 12px 14px 12px 42px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-xs);
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: all 0.2s ease;
    }
    .filter-input:focus {
        border-color: var(--brand-blue-accent);
        box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.15);
    }
    .filter-select {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-xs);
        font-size: 14px;
        font-family: inherit;
        outline: none;
        background: #ffffff;
        cursor: pointer;
    }
    .filter-select:focus {
        border-color: var(--brand-blue-accent);
    }
    .filter-badge-bar {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px dashed var(--border-color);
    }
    .filter-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        background: #f1f5f9;
        color: var(--brand-navy);
        cursor: pointer;
        border: 1px solid transparent;
        transition: all 0.15s ease;
    }
    .filter-pill:hover, .filter-pill.active {
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        border-color: var(--brand-blue-accent);
    }

    /* Job Card Item */
    .job-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 28px;
        margin-bottom: 20px;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
    }
    .job-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .job-card-main {
        flex: 1;
    }
    .job-badge-wrap {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .job-badge {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 3px 10px;
        border-radius: var(--radius-xs);
    }
    .badge-sector {
        background: #e0f2fe;
        color: #0369a1;
    }
    .badge-city {
        background: #f1f5f9;
        color: #475569;
    }
    .job-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 10px;
    }
    .job-title a:hover {
        color: var(--brand-blue-accent);
    }
    .job-desc {
        font-size: 14.5px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .job-meta-row {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 13px;
        color: #64748b;
        flex-wrap: wrap;
    }
    .job-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .job-meta-item i {
        color: var(--brand-blue-accent);
    }
    .job-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 170px;
    }
    .btn-job-detail {
        background: var(--brand-navy);
        color: #ffffff !important;
        text-align: center;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 700;
        border-radius: var(--radius-xs);
        transition: all 0.2s ease;
    }
    .btn-job-detail:hover {
        background: var(--brand-blue);
    }
    .btn-job-apply {
        background: #25d366;
        color: #ffffff !important;
        text-align: center;
        padding: 9px 16px;
        font-size: 12.5px;
        font-weight: 700;
        border-radius: var(--radius-xs);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.2s ease;
    }
    .btn-job-apply:hover {
        background: #1eb956;
    }

    /* Single Job Detail View */
    .job-detail-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-card);
    }
    .job-detail-content {
        margin-top: 25px;
        font-size: 15.5px;
        line-height: 1.8;
        color: #334155;
    }
    .job-detail-content h3 {
        font-size: 20px;
        font-weight: 800;
        margin: 25px 0 12px 0;
        color: var(--brand-navy);
        border-bottom: 2px solid var(--brand-blue-light);
        padding-bottom: 6px;
    }
    .job-detail-content ul {
        margin: 12px 0 20px 24px;
    }
    .job-detail-content li {
        margin-bottom: 6px;
    }
    .job-contact-box {
        margin-top: 40px;
        background: var(--brand-navy-dark);
        color: #ffffff;
        border-radius: var(--radius-md);
        padding: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .job-contact-box h4 {
        color: #ffffff;
        font-size: 20px;
        margin-bottom: 6px;
    }
    .job-contact-box p {
        color: #cbd5e1;
        font-size: 14px;
    }

    @media (max-width: 800px) {
        .filter-grid { grid-template-columns: 1fr; }
        .job-card { flex-direction: column; align-items: stretch; }
        .job-actions { flex-direction: row; }
        .job-contact-box { flex-direction: column; text-align: center; }
    }


/* ====================================================
   FROM: sablon_iletisim.html
   ==================================================== */

.contact-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        border-bottom: 3px solid var(--brand-blue-accent);
        color: #ffffff;
        padding: 60px 0;
        margin-bottom: 45px;
    }
    .contact-hero-bg {
        position: absolute;
        inset: -20px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(5px) brightness(0.68);
        -webkit-filter: blur(5px) brightness(0.68);
        transform: scale(1.05);
        z-index: 1;
    }
    .contact-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(25, 28, 31, 0.58) 0%, rgba(34, 38, 42, 0.45) 100%);
        z-index: 2;
    }
    .contact-hero .container {
        position: relative;
        z-index: 3;
    }
    .contact-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .contact-breadcrumb a { color: #cbd5e1; }
    .contact-breadcrumb a:hover { color: #ffffff; }
    .contact-title {
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -0.6px;
        color: #ffffff;
    }
    .contact-lead {
        font-size: 16.5px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 800px;
        line-height: 1.6;
    }

    .contact-container {
        padding-bottom: 70px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.35fr;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    /* Info Cards Column */
    .contact-info-wrap {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .contact-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: var(--shadow-sm);
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: all 0.2s ease;
    }
    .contact-card:hover {
        border-color: #cbd5e1;
        box-shadow: var(--shadow-md);
    }
    .contact-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--brand-blue-light);
        color: var(--brand-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }
    .contact-card-body h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--brand-navy);
        margin-bottom: 4px;
    }
    .contact-card-body p, .contact-card-body a {
        font-size: 14.5px;
        color: #475569;
        line-height: 1.5;
    }
    .contact-card-body a:hover {
        color: var(--brand-blue-accent);
    }

    /* Form Column */
    .contact-form-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-sm);
    }
    .contact-form-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--brand-navy);
        margin-bottom: 8px;
    }
    .contact-form-card p.form-desc {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 24px;
    }
    .form-group {
        margin-bottom: 18px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .form-label {
        display: block;
        font-size: 13.5px;
        font-weight: 600;
        color: #334155;
        margin-bottom: 6px;
    }
    .form-label span.req { color: #dc2626; }
    .form-input, .form-textarea, .form-select {
        width: 100%;
        padding: 11px 14px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        font-size: 14.5px;
        font-family: inherit;
        color: var(--text-dark);
        background: #f8fafc;
        transition: all 0.2s ease;
    }
    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--brand-blue-accent);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.12);
    }
    .form-textarea {
        resize: vertical;
        min-height: 120px;
    }
    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: #64748b;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    .form-checkbox input {
        margin-top: 3px;
    }
    .alert-success {
        background: #ecfdf5;
        border: 1px solid #6ee7b7;
        color: #065f46;
        padding: 18px 20px;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14.5px;
        font-weight: 600;
    }
    .alert-danger {
        background: #fef2f2;
        border: 1px solid #fca5a5;
        color: #991b1b;
        padding: 14px 18px;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
        font-size: 14px;
    }

    /* Submit Button */
    .btn-submit-contact {
        width: 100%;
        padding: 15px 24px;
        background: var(--brand-blue-accent);
        color: #ffffff !important;
        border: none;
        border-radius: var(--radius-xs);
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.25s ease;
        box-shadow: 0 4px 14px rgba(0, 119, 255, 0.35);
    }
    .btn-submit-contact:hover {
        background: var(--brand-blue);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 119, 255, 0.45);
    }
    .btn-submit-contact:active {
        transform: translateY(0);
    }

    /* Map Card */
    .map-wrap {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }
    .map-header {
        padding: 20px 26px;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .map-header h4 {
        font-size: 17px;
        font-weight: 700;
        color: var(--secondary);
    }
    .map-header span {
        font-size: 13px;
        color: var(--text-muted);
    }
    .map-iframe {
        width: 100%;
        height: 380px;
        border: 0;
        display: block;
    }

    @media (max-width: 900px) {
        .contact-grid { grid-template-columns: 1fr; }
        .form-row { grid-template-columns: 1fr; }
        .contact-form-card { padding: 26px 20px; }
    }


/* ====================================================
   FROM: sablon_blog.html
   ==================================================== */

.blog-hero {
        position: relative;
        overflow: hidden;
        background-color: var(--brand-navy-dark);
        color: #ffffff;
        padding: 60px 0;
        border-bottom: 3px solid var(--brand-blue-accent);
    }
    .blog-hero-bg {
        position: absolute;
        inset: -15px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        filter: blur(4px) brightness(0.8);
        -webkit-filter: blur(4px) brightness(0.8);
        transform: scale(1.04);
        z-index: 1;
    }
    .blog-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(7, 21, 36, 0.75) 0%, rgba(13, 34, 58, 0.60) 100%);
        z-index: 2;
    }
    .blog-hero .container {
        position: relative;
        z-index: 3;
    }
    .blog-breadcrumb {
        font-size: 13px;
        color: #94a3b8;
        margin-bottom: 12px;
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .blog-breadcrumb a { color: #cbd5e1; }
    .blog-breadcrumb a:hover { color: #ffffff; }
    .blog-title {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
    }
    .blog-lead {
        font-size: 16px;
        color: #cbd5e1;
        margin-top: 10px;
        max-width: 800px;
        line-height: 1.6;
    }

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

    /* Grid Layout */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 30px;
    }
    .blog-card {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all 0.25s ease;
        display: flex;
        flex-direction: column;
    }
    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: #cbd5e1;
    }
    .blog-card-img-placeholder {
        height: 200px;
        background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.35);
        font-size: 48px;
        position: relative;
    }
    .blog-card-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--brand-blue-accent);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: var(--radius-xs);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .blog-card-body {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .blog-meta-top {
        font-size: 12.5px;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    .blog-card-title {
        font-size: 19px;
        font-weight: 800;
        line-height: 1.35;
        margin-bottom: 12px;
        color: var(--brand-navy);
    }
    .blog-card-title a:hover {
        color: var(--brand-blue-accent);
    }
    .blog-card-excerpt {
        font-size: 14px;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
    }
    .btn-read-more {
        color: var(--brand-blue);
        font-size: 13.5px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .btn-read-more:hover {
        color: var(--brand-blue-accent);
        gap: 10px;
    }

    /* Single Post Detail */
    .post-container {
        max-width: 860px;
        margin: 0 auto;
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 45px;
        box-shadow: var(--shadow-card);
    }
    .post-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
        font-size: 13.5px;
        color: #64748b;
        flex-wrap: wrap;
    }
    .post-body {
        font-size: 16px;
        line-height: 1.8;
        color: #334155;
    }
    .post-body h2, .post-body h3 {
        margin: 30px 0 14px 0;
        color: var(--brand-navy);
    }
    .post-body ul, .post-body ol {
        margin: 14px 0 20px 24px;
    }
    .post-body li {
        margin-bottom: 8px;
    }
    .post-lead {
        font-size: 18px;
        font-weight: 500;
        color: var(--brand-navy-light);
        margin-bottom: 24px;
        line-height: 1.7;
    }
    .post-author-box {
        margin-top: 40px;
        background: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--brand-navy);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

