.page-hero {
    position: relative;
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: 0;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 21, 32, 0.65) 0%, rgba(215, 20, 26, 0.82) 100%);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.breadcrumb-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 18px;
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: #fff;
}

.corporate-content {
    padding: 80px 0 100px;
}

.corporate-sidebar .card {
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(215, 20, 26, 0.14);
    box-shadow: 0 20px 45px rgba(215, 20, 26, 0.08);
}

.corporate-sidebar .nav-link {
    color: #3a3e46;
    font-weight: 500;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.corporate-sidebar .nav-link:hover {
    background-color: rgba(215, 20, 26, 0.1);
    color: var(--primary-color);
}

.corporate-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 12px 30px rgba(215, 20, 26, 0.35);
}

.corporate-section + .corporate-section {
    margin-top: 56px;
}

.corporate-section > span {
    letter-spacing: 0.14em;
    color: rgba(215, 20, 26, 0.7);
}

.stat-card {
    background: linear-gradient(135deg, #d7141a 0%, #87070c 100%);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 22px 45px rgba(135, 7, 12, 0.35);
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
}

.content-highlight {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(215, 20, 26, 0.16);
    box-shadow: 0 18px 40px rgba(215, 20, 26, 0.08);
}

.content-highlight h3 {
    color: var(--primary-color);
}

.corporate-section .border {
    border-color: rgba(215, 20, 26, 0.18) !important;
    background-color: #ffffff;
    box-shadow: 0 18px 32px rgba(22, 7, 8, 0.08);
}

.corporate-section .border h3 {
    color: #2b2f36;
}

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

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(215, 20, 26, 0.1);
    box-shadow: 0 12px 30px rgba(20, 23, 30, 0.05);
}

.values-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.callout-box {
    background: linear-gradient(135deg, #d7141a 0%, #7f070c 100%);
    color: #fff;
    border-radius: 22px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.callout-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0) 0%, rgba(12, 0, 0, 0.45) 75%), url('../tir-2.png') bottom -40px right -30px/360px auto no-repeat;
}

.callout-box > * {
    position: relative;
    z-index: 1;
}

.callout-box .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.callout-box .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .corporate-sidebar {
        margin-bottom: 32px;
    }

    .callout-box {
        padding: 36px 28px;
    }
}
.contact-main {
    padding: 80px 0 110px;
}

.contact-main .section-intro {
    max-width: 680px;
    margin-bottom: 48px;
}

.contact-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-summary .contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 28px;
    border: 1px solid rgba(215, 20, 26, 0.12);
    box-shadow: 0 16px 36px rgba(28, 12, 14, 0.08);
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.contact-summary .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-summary .contact-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.contact-summary .contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    align-items: flex-start;
}

.contact-summary .contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-summary .contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2f36;
    text-decoration: none;
}

.contact-summary .contact-card small {
    color: #6d7179;
}

.contact-summary .contact-card a:hover {
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr);
    gap: 40px;
    align-items: start;
}

.contact-content .content-highlight {
    height: 100%;
}

.contact-content .content-highlight h3 {
    margin-bottom: 16px;
}

.contact-content form {
    display: grid;
    gap: 16px;
}

.contact-content .form-control,
.contact-content textarea {
    border-radius: 14px;
    border: 1px solid rgba(43, 47, 54, 0.12);
    background: #ffffff;
    padding: 14px 18px;
    font-size: 1rem;
    color: #2b2f36;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-content textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-content .form-control:focus,
.contact-content textarea:focus {
    outline: none;
    border-color: rgba(215, 20, 26, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(215, 20, 26, 0.12);
}

.contact-content .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(215, 20, 26, 0.32);
}

.contact-map-card {
    background: #0f1b29;
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.contact-map-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.45) 75%), url('../map.svg') center/cover no-repeat;
    opacity: 0.35;
}

.contact-map-card > * {
    position: relative;
    z-index: 1;
}

.contact-map-card .map-wrapper {
    margin-top: 18px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-map-card iframe {
    border: 0;
    width: 100%;
    height: 260px;
}

@media (max-width: 1199.98px) {
    .contact-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .contact-summary {
        grid-template-columns: 1fr;
    }

    .contact-summary .contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contact-summary .contact-icon {
        width: 52px;
        height: 52px;
    }

    .contact-summary .contact-value {
        font-size: 1.05rem;
    }

    .contact-main {
        padding: 60px 0 90px;
    }
}

.hamburger-line {
    background-color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.scrolled .hamburger-line{
 background-color: #2b2f36;
}