﻿/*HEADING*/

.page-header {
    margin-bottom: 0px;
    border-bottom: 1px solid #e1e5eb;
}

    .page-header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
    }

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

    .breadcrumb-item a:hover {
        color: #007bff;
    }

.breadcrumb-item.active {
    color: #ff7a00;
    font-weight: 600;
}
/*HEADING*/






:root {
    --brand-primary: #ff7a00;
    --brand-secondary: #0f172a;
    --brand-accent: #ffb347;
    --brand-muted: #4b5563;
    --bg-light: #e9edf3;
    --bg-soft: #f1f5f9;
}


.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    font-weight: 600;
}

    .btn-outline-primary:hover {
        background: var(--brand-primary);
        color: #ffffff;
        border-color: var(--brand-primary);
        box-shadow: 0 8px 18px rgba(242, 159, 5, 0.2);
    }

.badge-primary {
    background: var(--brand-primary);
    color: #0f172a;
}

.badge-info {
    background: var(--brand-accent);
    color: #0f172a;
}

.badge-warning {
    background: var(--brand-primary);
    color: #0f172a;
}

.badge {
    margin-right: 6px;
    margin-bottom: 6px;
}

.layout-navbar-fixed .wrapper .main-header {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-link {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero {
    background: linear-gradient(180deg, #ffffff 0%, #fff5eb 100%);
    color: var(--brand-secondary);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f3ddbc;
    box-shadow: 0 10px 30px rgba(14, 26, 43, 0.08);
    animation: fadeIn 0.6s ease;
}

.hero-visual {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.hero .btn {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--brand-primary);
    font-size: 20px;
    border: 1px solid #e2e8f0;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.3px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e6e8ed;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fadeInUp 0.5s ease;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

.equipment-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    border: 1px solid #e6e8ed;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.5s ease;
}

    .equipment-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }

    .equipment-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.equipment-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.equipment-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.equipment-body ul {
    list-style: disc;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media (min-width: 768px) {
    .nav-cta {
        align-items: flex-end;
    }
}

.badge-soft {
    background: #fff3e0;
    color: var(--brand-secondary);
    border: 1px dashed rgba(17, 24, 39, 0.08);
}

/*.footer {
    background: #0b1220;
    color: #e5e7eb !important;
}

    .footer a {
        color: #cbd5e1 !important;
    }

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

    .footer-row > div {
        flex: 1 1 320px;
        min-width: 280px;
    }*/

/*.navbar-nav .nav-link.active {
    font-weight: 700;
    color: var(--brand-primary) !important;
}*/

/*@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

.contact-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

    .contact-card .icon-circle {
        background: rgba(13, 110, 253, 0.08);
        color: #0d6efd;
    }

.timeline {
    position: relative;
    padding-left: 28px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(13, 110, 253, 0.25);
    }

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -16px;
        top: 4px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0d6efd;
        box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.15);
    }

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--brand-secondary);
}

    .category-chip i {
        color: var(--brand-primary);
    }

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.25);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--brand-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

    .filter-chip i {
        color: var(--brand-primary);
    }

    .filter-chip.active {
        border-color: #0d6efd;
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
    }

.backdrop-blur {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.filter-panel {
    position: sticky;
    top: 90px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .filter-panel label {
        font-weight: 600;
        color: var(--brand-secondary);
    }

    .filter-panel .form-control,
    .filter-panel .custom-control-label {
        font-weight: 500;
    }

@media (max-width: 991px) {
    .hero {
        border-radius: 16px;
    }

    .floating-cta {
        right: 12px;
        bottom: 12px;
    }
}

















































/*FOOTER*/

.footer-preview {
    background-color: #0b1220 !important;
    color: #cbd5e1 !important;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    border-top: 3px solid #ff7a00 !important;
    font-size: 0.9rem;
}

.footer-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .footer-header h2 {
        color: #fff !important;
        font-weight: 700;
        font-size: 1.6rem;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
        margin-bottom: 0;
    }

        .footer-header h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #ff7a00 !important;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

.footer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.02) !important;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease;
}

    .footer-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 122, 0, 0.3);
    }

    .footer-card h6 {
        color: #fff !important;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 8px;
        margin-bottom: 10px !important;
        font-size: 0.95rem;
    }

.footer-cta-btn {
    background-color: #ff7a00 !important;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #ff7a00 !important;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .footer-cta-btn:hover {
        background-color: transparent !important;
        color: #ff7a00 !important;
    }

.footer-contact-link,
.footer-address-link,
.footer-social-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}

    .footer-contact-link:hover,
    .footer-address-link:hover,
    .footer-social-links a:hover {
        color: #ff7a00 !important;
        padding-left: 3px;
    }

    .footer-contact-link i,
    .footer-address-link i,
    .footer-social-links i {
        color: #ff7a00 !important;
        width: 20px;
        text-align: center;
        margin-right: 8px;
        margin-top: 3px;
        font-size: 0.9rem;
    }

.footer-bottom-links-container {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-link {
    color: #b39e5e !important;
    text-decoration: none !important;
    font-size: 0.8rem;
    margin: 0 10px;
    display: inline-block;
}

    .footer-bottom-link:hover {
        color: #ff7a00 !important;
    }


.site-footer-logo img {
    max-width: 90px;
    opacity: 0.8;
}

.footer-site-name-footer, .footer-site-slogan {
    font-size: 0.85rem;
}

.footer-imza {
    font-size: 0.75rem;
    color: #475569 !important;
}
