﻿/* --- BRAND UI TOKENS & SYSTEM VARIABLES --- */
:root {
    --tm-navy-dark: #1E293B; /* Premium Midnight Slate Base */
    --tm-cyan-bright: #0ea5e9; /* Corporate Identity Cyan Accent */
    --tm-transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    /* Prevents the pinned fixed header navbar from clipping your legal document card */
    padding-top: 110px !important;
    background-color: #F8FAFC !important; /* Soft slate gray backdrop */
}

/* --- STICKY NAVIGATION BAR ENGINE --- */
.tm-nav.fixed-top {
    background-color: var(--tm-navy-dark) !important;
    z-index: 1050 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15) !important;
}

.tm-brand-icon {
    font-size: 1rem !important;
    line-height: 1 !important;
}

.tm-brand-logo-img {
    height: 46px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* --- BRAND SPECIFIC DECORATION ACCENTS --- */
.tm-btn-dark {
    background-color: var(--tm-navy-dark) !important;
    border: none !important;
    border-radius: 50px !important;
    transition: var(--tm-transition-smooth);
}

    .tm-btn-dark:hover {
        opacity: 0.95;
        transform: translateY(-1px);
    }

.tm-badge-cyan {
    background-color: #e0f2fe !important;
    color: var(--tm-cyan-bright) !important;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.fs-8 {
    font-size: 0.75rem !important;
}

/* --- LEGAL CONTENT TYPOGRAPHY ALIGNMENT --- */
.tm-legal-card {
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02) !important;
}

.tm-clause-section h2 {
    letter-spacing: -0.3px;
    margin-top: 1.5rem;
}

/* --- BRANDED BUSINESS & COMPLIANCE FOOTER REGIONS --- */
.tm-site-footer {
    /* Smoothly shifts background color from secondary slate into your primary brand navy */
    background-color: var(--tm-navy-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.25) !important; /* Adds deep dimensional shading context */
}

    .tm-site-footer h4 {
        color: #ffffff !important;
        font-size: 0.9rem;
    }

.tm-footer-link {
    transition: var(--tm-transition-smooth);
    display: inline-block;
}

    .tm-footer-link:hover {
        color: var(--tm-cyan-bright) !important;
        transform: translateX(3px);
    }

@media (max-width: 767px) {
    .tm-footer-link:hover {
        transform: translateY(-1px);
    }
}

.fs-7 {
    font-size: 0.875rem !important;
}

.fs-8 {
    font-size: 0.75rem !important;
}
