:root {
    --chivembe-dark: #1a1a1a;
    --chivembe-red: #E53935;
    --chivembe-red-dark: #C62828;
    --chivembe-gray: #6B7280;
    --chivembe-light: #F9FAFB;
    --chivembe-white: #FFFFFF;
}

* {
    font-family: 'Poppins', sans-serif;
}

/* Alternative Design - Glass Morphism + Dark Accent */
.alt-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alt-navbar.scrolled {
    border-bottom-color: rgba(229, 57, 53, 0.15);
}

.alt-navbar .navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Logo Styling - Horizontal Layout */
.alt-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-decoration: none;
}

.alt-navbar .brand-logo-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--chivembe-dark) 0%, #333 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.alt-navbar .brand-logo-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
}

.alt-navbar .brand-logo-wrap svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.alt-navbar .brand-text {
    display: flex;
    flex-direction: column;
}

.alt-navbar .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--chivembe-dark);
    letter-spacing: 2px;
    line-height: 1.2;
}

.alt-navbar .brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--chivembe-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navigation Links - Pill Style */
.alt-navbar .nav-pills-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.alt-navbar .nav-pills {
    background: var(--chivembe-light);
    padding: 6px;
    border-radius: 50px;
    gap: 4px;
}

.alt-navbar .nav-pills .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--chivembe-gray) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.alt-navbar .nav-pills .nav-link:hover {
    color: var(--chivembe-dark) !important;
    background: var(--chivembe-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alt-navbar .nav-pills .nav-link.active {
    color: var(--chivembe-white) !important;
    background: var(--chivembe-dark);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

/* Dropdown - Modern Card Style */
.alt-navbar .dropdown-menu {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin-top: 12px !important;
    min-width: 240px;
    background: var(--chivembe-white);
}

.alt-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--chivembe-white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.02);
}

.alt-navbar .dropdown-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--chivembe-gray);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alt-navbar .dropdown-item:hover,
.alt-navbar .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(229, 57, 53, 0.04) 100%);
    color: var(--chivembe-dark);
}

.alt-navbar .dropdown-item .item-icon {
    width: 36px;
    height: 36px;
    background: var(--chivembe-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.alt-navbar .dropdown-item .item-text {
    display: flex;
    flex-direction: column;
}

.alt-navbar .dropdown-item .item-title {
    font-weight: 600;
    color: var(--chivembe-dark);
}

.alt-navbar .dropdown-item .item-desc {
    font-size: 0.75rem;
    color: var(--chivembe-gray);
    font-weight: 400;
}

/* CTA - Outline Style with Fill on Hover */
.alt-navbar .btn-cta-outline {
    background: transparent;
    color: var(--chivembe-dark);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--chivembe-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.alt-navbar .btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--chivembe-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.alt-navbar .btn-cta-outline:hover {
    color: var(--chivembe-white);
    border-color: var(--chivembe-dark);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.25);
}

.alt-navbar .btn-cta-outline:hover::before {
    left: 0;
}

.alt-navbar .btn-cta-outline .btn-icon {
    position: relative;
    transition: transform 0.3s ease;
}

.alt-navbar .btn-cta-outline:hover .btn-icon {
    transform: translateX(4px);
}

/* Language Switcher */
.alt-navbar .lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--chivembe-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alt-navbar .lang-switcher:hover {
    background: var(--chivembe-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.alt-navbar .lang-switcher .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

.alt-navbar .lang-switcher .lang-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--chivembe-dark);
}

/* Toggler */
.alt-navbar .navbar-toggler {
    border: none;
    padding: 12px;
    border-radius: 12px;
    background: var(--chivembe-light);
    transition: all 0.3s ease;
}

.alt-navbar .navbar-toggler:hover {
    background: var(--chivembe-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.alt-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.alt-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .alt-navbar .navbar-container {
        padding: 0 20px;
    }

    .alt-navbar .navbar-collapse {
        background: var(--chivembe-white);
        padding: 24px;
        border-radius: 20px;
        margin-top: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .alt-navbar .nav-pills {
        background: transparent;
        padding: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 8px;
    }

    .alt-navbar .nav-pills .nav-link {
        padding: 14px 20px !important;
        border-radius: 14px;
    }

    .alt-navbar .nav-pills .nav-link:hover,
    .alt-navbar .nav-pills .nav-link.active {
        background: var(--chivembe-light);
    }

    .alt-navbar .btn-cta-outline {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .alt-navbar .lang-switcher {
        justify-content: center;
        margin-top: 16px;
    }

    .alt-navbar .brand-logo-wrap {
        width: 46px;
        height: 46px;
    }

    .alt-navbar .brand-name {
        font-size: 1.15rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alt-navbar .navbar-brand,
.alt-navbar .nav-pills-container,
.alt-navbar .action-group {
    animation: slideIn 0.5s ease forwards;
}

.alt-navbar .nav-pills-container {
    animation-delay: 0.1s;
}

.alt-navbar .action-group {
    animation-delay: 0.2s;
}

 .page-header {
    background: linear-gradient(135deg, var(--chivembe-dark) 0%, #333 100%);
    padding: 35px 0 45px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.page-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 57, 53, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.page-icon i {
    font-size: 2.5rem;
    color: var(--chivembe-red);
}

.section {
    padding: 80px 0;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--chivembe-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--chivembe-dark);
    margin-bottom: 16px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.compliance-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--chivembe-light);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid var(--chivembe-red);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    transition: box-shadow 0.25s ease;
}

.compliance-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.compliance-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--chivembe-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.compliance-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.compliance-card span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--chivembe-dark);
    line-height: 1.4;
}

.compliance-actions {
    display: flex;
    gap: 0.8rem;
}

.compliance-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--chivembe-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: opacity 0.2s;
}

.compliance-link:hover {
    opacity: 0.75;
    color: var(--chivembe-red);
}

.compliance-card--has-preview {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.compliance-card--has-preview .compliance-card-body {
    padding: 0.9rem 1.2rem;
}

.compliance-preview-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    line-height: 0;
}

.compliance-preview-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.compliance-preview-link:hover .compliance-preview-img {
    transform: scale(1.04);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--chivembe-gray);
    line-height: 1.8;
}

.equipment-card {
    background: var(--chivembe-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding-top: 5px;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.equipment-card .card-img {
    height: 180px;
    overflow: hidden;
}

.equipment-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}

.equipment-card:hover .card-img img {
    transform: scale(1.05);
}

.equipment-card .card-body {
    padding: 24px;
}

.equipment-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--chivembe-dark);
    margin-bottom: 8px;
}

.equipment-card p {
    font-size: 0.9rem;
    color: var(--chivembe-gray);
    line-height: 1.7;
    margin: 0;
}

.brands-section {
    background: var(--chivembe-dark);
    padding: 60px 0;
}

.brands-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.brand-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-logo img {
    max-height: 100%;
    max-width: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-item {
    background: var(--chivembe-white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--chivembe-red);
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--chivembe-dark);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--chivembe-gray);
    margin: 0;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(229, 57, 53, 0.02) 100%);
    padding: 80px 0;
}

.cta-box {
    background: var(--chivembe-white);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.btn-primary-chivembe {
    background: var(--chivembe-red);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-chivembe:hover {
    background: var(--chivembe-red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}

.service-tab-content { padding-top: 40px; }
.nav-tabs-custom { border-bottom: 2px solid var(--chivembe-light); margin-bottom: 40px; }
.nav-tabs-custom .nav-link { border: none; padding: 16px 32px; font-size: 1.1rem; font-weight: 600; color: var(--chivembe-gray); position: relative; transition: all 0.3s ease; }
.nav-tabs-custom .nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px; background: var(--chivembe-red); transition: width 0.3s ease; }
.nav-tabs-custom .nav-link:hover { color: var(--chivembe-dark); }
.nav-tabs-custom .nav-link.active { color: var(--chivembe-red); }
.nav-tabs-custom .nav-link.active::after { width: 100%; }

.feature-card { background: var(--chivembe-white); border-radius: 20px; padding: 32px; border: 1px solid rgba(0,0,0,0.05); height: 100%; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; color: var(--chivembe-red); }
.feature-card h4 { font-size: 1.15rem; font-weight: 600; color: var(--chivembe-dark); margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: var(--chivembe-gray); line-height: 1.7; margin: 0; }

.process-step { text-align: center; padding: 32px 24px; }
.step-number { width: 64px; height: 64px; background: var(--chivembe-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; margin: 0 auto 20px; }
.process-step h4 { font-size: 1.1rem; font-weight: 600; color: var(--chivembe-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--chivembe-gray); margin: 0; }

.lang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.lang-item { background: var(--chivembe-light); border-radius: 12px; padding: 20px; text-align: center; transition: all 0.3s ease; }
.lang-item:hover { background: var(--chivembe-red); }
.lang-item:hover span { color: white; }
.lang-item span { font-weight: 600; color: var(--chivembe-dark); transition: all 0.3s ease; }

.interpreting-type { background: var(--chivembe-white); border-radius: 24px; padding: 40px; border: 1px solid rgba(0,0,0,0.05); height: 100%; transition: all 0.3s ease; }
.interpreting-type:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--chivembe-red); }
.interpreting-type .type-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--chivembe-red) 0%, var(--chivembe-red-dark) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.interpreting-type .type-icon i { font-size: 1.75rem; color: white; }
.interpreting-type h3 { font-size: 1.35rem; font-weight: 700; color: var(--chivembe-dark); margin-bottom: 16px; }
.interpreting-type p { font-size: 0.95rem; color: var(--chivembe-gray); line-height: 1.7; margin-bottom: 20px; }
.interpreting-type ul { list-style: none; padding: 0; margin: 0; }
.interpreting-type ul li { font-size: 0.9rem; color: var(--chivembe-gray); padding: 8px 0; display: flex; align-items: center; gap: 12px; }
.interpreting-type ul li::before { content: ''; width: 8px; height: 8px; background: var(--chivembe-red); border-radius: 50%; flex-shrink: 0; }

.event-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.event-type { background: var(--chivembe-white); border-radius: 16px; padding: 24px; text-align: center; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s ease; }
.event-type:hover { border-color: var(--chivembe-red); transform: translateY(-2px); }
.event-type i { font-size: 2rem; color: var(--chivembe-red); margin-bottom: 12px; }
.event-type h5 { font-size: 1rem; font-weight: 600; color: var(--chivembe-dark); margin: 0; }

.service-detailed { background: var(--chivembe-white); border-radius: 24px; padding: 48px; border: 1px solid rgba(0,0,0,0.05); height: 100%; transition: all 0.3s ease; }
.service-detailed:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--chivembe-red); }
.service-detailed .service-icon { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-detailed .service-icon img { width: 100%; }
.service-detailed h3 { font-size: 1.35rem; font-weight: 700; color: var(--chivembe-dark); margin-bottom: 16px; }
.service-detailed p { font-size: 0.95rem; color: var(--chivembe-gray); line-height: 1.8; margin-bottom: 24px; }
.service-detailed ul { list-style: none; padding: 0; margin: 0; }
.service-detailed ul li { font-size: 0.9rem; color: var(--chivembe-gray); padding: 10px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.service-detailed ul li:last-child { border-bottom: none; }
.service-detailed ul li i { color: var(--chivembe-red); font-size: 1.1rem; }

.process-section { background: var(--chivembe-light); }
.process-step { background: var(--chivembe-white); border-radius: 20px; padding: 32px; text-align: center; border: 1px solid rgba(0,0,0,0.05); height: 100%; }
.process-step .step-num { width: 48px; height: 48px; background: var(--chivembe-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: white; margin: 0 auto 20px; }
.process-step h4 { font-size: 1.1rem; font-weight: 600; color: var(--chivembe-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--chivembe-gray); margin: 0; line-height: 1.7; }

/* --- TRANSLATION & INTERPRETING PAGE --- */

/* Document type cards */
.ti-doc-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--chivembe-light);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.ti-doc-type-card:hover {
    border-color: var(--chivembe-red);
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(229,57,53,0.1);
}
.ti-doc-type-card i {
    font-size: 1.6rem;
    color: var(--chivembe-red);
}
.ti-doc-type-card span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--chivembe-dark);
    line-height: 1.3;
}

/* Stacked image layout for interpreting */
.ti-img-stack {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}
.ti-img-stack__primary {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 380px;
}
.ti-img-stack__secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 4px solid #fff;
    object-fit: cover;
    max-height: 200px;
}
@media (max-width: 576px) {
    .ti-img-stack { padding-bottom: 0; padding-right: 0; }
    .ti-img-stack__secondary { display: none; }
}

/* Language section group title */
.ti-lang-group-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chivembe-gray);
    margin-bottom: 1rem;
}

/* Local/regional language items (no flag) */
.ti-lang-item--local {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ti-lang-item--local i {
    font-size: 1.6rem;
    color: var(--chivembe-red);
    transition: color 0.3s ease;
}
.lang-item:hover .ti-lang-item--local i,
.ti-lang-item--local:hover i { color: #fff; }

/* Why us / pillars */
.ti-pillar-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s ease;
}
.ti-pillar-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: var(--chivembe-red);
    transform: translateY(-4px);
}
.ti-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--chivembe-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.ti-pillar-icon i {
    font-size: 1.5rem;
    color: #fff;
}
.ti-pillar-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.ti-pillar-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* --- CLIENTELE SECTION --- */
.clientele-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.clientele-header {
    padding: 0 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Fade edges mask */
.clientele-track-wrapper {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clientele-swiper {
    overflow: hidden;
}

.clientele-slide {
    width: 180px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.clientele-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: opacity 0.35s ease;
}

.clientele-logo-card:hover {
    opacity: 1;
}

.clientele-logo-card img {
    max-height: 70px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* --- BRANDS / TECHNOLOGY PARTNERS SECTION --- */
.brands-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

.brands-track-wrapper {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.brands-swiper {
    overflow: hidden;
}

.brand-slide {
    width: 160px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
}

.brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: opacity 0.35s ease;
}

.brand-logo-card:hover {
    opacity: 1;
}

.brand-logo-card img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

footer {
    background: var(--chivembe-dark);
    padding: 60px 0 0px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.8;
}

footer a:hover {
    color: white;
}

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

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

.services-intro {
    margin: 20px;
    padding: 20px;
    background-color: #e81d25 !important;
    border-radius: 5px;
}

.services-intro a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

.breadcrumbs {
    border-top: 1px solid;
    padding-top: 5px;
}

.hidden { display: none !important; }

/* ===== CONTACT PAGE ===== */

.contact-hero {
    background: var(--chivembe-dark);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,57,53,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-text {
    max-width: 640px;
}

.contact-hero-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.contact-body-section {
    padding: 64px 0 80px;
    background: var(--chivembe-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    align-items: start;
}

/* --- Info Panel --- */
.contact-info-panel {
    background: var(--chivembe-dark);
    border-radius: 20px;
    padding: 40px 36px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.contact-info-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-info-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 32px;
}

.contact-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(229,57,53,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--chivembe-red);
}

.contact-detail-icon--whatsapp {
    background: rgba(37,211,102,0.15);
    color: #25D366;
}

.contact-detail-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-list li strong {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-detail-list li a,
.contact-detail-list li span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.5;
}

.contact-detail-list li a:hover {
    color: var(--chivembe-red);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.contact-social a:hover {
    background: var(--chivembe-red);
    color: #fff;
}

.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
}

#map {
    min-height: 220px;
    width: 100%;
}

/* --- Form Panel --- */
.contact-form-panel {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--chivembe-dark);
    margin-bottom: 6px;
}

.contact-form-sub {
    font-size: 0.88rem;
    color: var(--chivembe-gray);
    margin-bottom: 32px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-field label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--chivembe-dark);
}

.contact-field .req {
    color: var(--chivembe-red);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--chivembe-dark);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--chivembe-red);
    box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
    background: #fff;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-eq {
    background: var(--chivembe-light);
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--chivembe-dark);
    white-space: nowrap;
}

.captcha-row input {
    max-width: 140px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--chivembe-red);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
}

.contact-submit-btn:hover {
    background: var(--chivembe-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,57,53,0.35);
}

.contact-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-alert--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-alert--error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.contact-alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        position: static;
    }
    .contact-map-wrap #map {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .contact-form-panel {
        padding: 28px 20px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        padding: 28px 20px;
    }
    .captcha-row {
        flex-wrap: wrap;
    }
    .captcha-row input {
        max-width: 100%;
    }
}

.call-to-action {
    --default-color: #ffffff;
    --background-color: #4b4a4c;
    --background-color-rgb: 0, 0, 0;
    padding: 80px 0;
    position: relative;
    -webkit-clip-path: inset(0);
    background-image: url(../images/chivembe-3d.jpg);
}

.main-footer {
    background-color: #222;
    color: #bbb;
    font-size: 0.92rem;
}

.footer-container {
    padding: 4rem 0 2.5rem;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d92525;
    display: inline-block;
}

/* Quick links */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 0.6rem;
}

.links-col a,
.contact-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.links-col a:hover,
.contact-col a:hover {
    color: #d92525;
}

/* Contact items */
.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.85rem;
    color: #bbb;
}

.contact-col i {
    color: #d92525;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-col span {
    line-height: 1.5;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 1.25rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-icons a:hover {
    background: #d92525;
    color: #fff;
}

/* Facebook iframe wrapper — fills column, fixed height */
.footer-fb-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.footer-fb-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer bar */
.footer-bar {
    background-color: #1a1a1a;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bar p {
    margin: 0;
}

/* Mobile: stack the two small cols on very small screens */
@media (max-width: 575px) {
    .links-col,
    .contact-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-fb-col {
        display: none; /* hide Facebook feed on small phones — saves space */
    }
}

/* ===== OTHER MEDIA SERVICES PAGE ===== */

/* Service Cards */
.oms-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.oms-service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.oms-service-img {
    position: relative;
    /* height: 220px; */
    /* overflow: hidden; */
    flex-shrink: 0;
}

.oms-service-img img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    /* transition: transform 0.4s ease; */
}

.oms-service-card:hover .oms-service-img img {
    transform: scale(1.05);
}

.oms-service-icon-badge {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--chivembe-red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(229,57,53,0.35);
}

.oms-service-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.oms-service-body {
    padding: 32px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.oms-service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--chivembe-dark);
    margin-bottom: 10px;
}

.oms-service-body p {
    font-size: 0.9rem;
    color: var(--chivembe-gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.oms-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.oms-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #444;
    padding: 4px 0;
}

.oms-feature-list li i {
    color: var(--chivembe-red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Studio Equipment Section */
.oms-studio-section {
    background: var(--chivembe-dark);
}

.oms-studio-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
}

.oms-studio-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.oms-studio-item div {
    display: flex;
    flex-direction: column;
}

.oms-studio-item strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.oms-studio-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}

/* Stacked studio images (mirrors .ti-img-stack pattern) */
.oms-studio-imgs {
    position: relative;
    padding-bottom: 80px;
    padding-right: 80px;
}

.oms-studio-imgs__primary {
    width: 100%;
    height: 380px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.oms-studio-imgs__secondary {
    width: 220px;
    height: 160px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--chivembe-dark);
}

@media (max-width: 768px) {
    .oms-studio-imgs {
        padding-bottom: 0;
        padding-right: 0;
    }
    .oms-studio-imgs__secondary {
        display: none;
    }
    .oms-service-img {
        height: 180px;
    }
}
}