﻿:root {
    --tc-primary: #005baa;
    --tc-secondary: #00a8e8;
    --tc-dark: #1f2933;
    --tc-gray: #6b7280;
    --tc-light: #f5f8fb;
    --tc-white: #ffffff;
    --tc-border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--tc-dark);
    background: var(--tc-white);
}

a {
    text-decoration: none;
}

header {
    position: relative;
    z-index: 1100;
    background: #ffffff;
}
/* HEADER TOP */

.tc-header-top {
    background: var(--tc-primary);
    color: var(--tc-white);
    font-size: 14px;
}

.tc-header-top-content {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-header-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-top-link {
    color: var(--tc-white);
    font-weight: 500;
}

    .tc-top-link:hover {
        color: #dbeafe;
    }

.tc-top-separator {
    opacity: 0.6;
}

/* NAVBAR */
.tc-main {
    padding-top: 74px;
}

.tc-navbar {
    background: #ffffff;
    position: relative;
    z-index: 1100;
    box-shadow: none;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

    .tc-navbar.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }

.tc-navbar-content {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-logo img {
    height: 48px;
    width: auto;
}

.tc-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tc-menu-link {
    color: var(--tc-dark);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

    .tc-menu-link:hover {
        color: var(--tc-primary);
    }

.tc-menu-link-primary {
    background: var(--tc-primary);
    color: var(--tc-white);
    padding: 10px 18px;
    border-radius: 999px;
}

    .tc-menu-link-primary:hover {
        background: #004b8f;
        color: var(--tc-white);
    }

/* MENU MOBILE */

.tc-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 8px;
    cursor: pointer;
}

    .tc-menu-toggle span {
        display: block;
        height: 3px;
        background: var(--tc-dark);
        margin: 6px 0;
        border-radius: 999px;
    }

/* MAIN */

.tc-main {
    min-height: 500px;
    background: var(--tc-white);
}

/* CONTACT BLOCK */

.tc-contact-block {
    background: var(--tc-light);
    padding: 60px 0;
}

.tc-contact-title {
    text-align: center;
    margin-bottom: 36px;
}

    .tc-contact-title h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--tc-primary);
        margin-bottom: 8px;
    }

    .tc-contact-title p {
        color: var(--tc-gray);
        margin: 0;
    }

.tc-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tc-contact-card {
    background: var(--tc-white);
    border: 1px solid var(--tc-border);
    border-radius: 18px;
    padding: 28px 22px;
    color: var(--tc-dark);
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .tc-contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
        color: var(--tc-dark);
    }

.tc-contact-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.tc-contact-card h3 {
    font-size: 20px;
    color: var(--tc-primary);
    margin-bottom: 8px;
}

.tc-contact-card p {
    color: var(--tc-gray);
    margin: 0;
    font-size: 14px;
}

/* FOOTER */

.tc-footer {
    background: #071c35;
    color: var(--tc-white);
    padding: 56px 0 24px;
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.tc-footer-column h4 {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--tc-white);
}

.tc-footer-column a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-size: 14px;
}

    .tc-footer-column a:hover {
        color: var(--tc-white);
    }

.tc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 36px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    color: #cbd5e1;
}

.tc-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .tc-footer-social a {
        color: #cbd5e1;
    }

        .tc-footer-social a:hover {
            color: var(--tc-white);
        }

/* RESPONSIVE */

@media (max-width: 991px) {
    .tc-menu-toggle {
        display: block;
    }

    .tc-menu {
        position: absolute;
        top: 114px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--tc-white);
        border-bottom: 1px solid var(--tc-border);
        padding: 18px 24px;
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    }

        .tc-menu.is-open {
            display: flex;
        }

    .tc-menu-link {
        width: 100%;
        padding: 13px 0;
    }

    .tc-menu-link-primary {
        width: auto;
        padding: 10px 18px;
        margin-top: 10px;
    }

    .tc-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .tc-header-top-content {
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .tc-navbar-content {
        min-height: 68px;
    }

    .tc-logo img {
        height: 40px;
    }

    .tc-menu {
        top: 106px;
    }

    .tc-contact-grid {
        grid-template-columns: 1fr;
    }

    .tc-footer-grid {
        grid-template-columns: 1fr;
    }

    .tc-footer-bottom {
        flex-direction: column;
    }
}



.tc-hero {
    background: linear-gradient(135deg, #005baa, #00a8e8);
    color: #ffffff;
    padding: 80px 0;
}

.tc-hero-content {
    max-width: 720px;
}

.tc-hero h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.tc-hero p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

.tc-section {
    padding: 60px 0;
}

.tc-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

    .tc-form-card h2 {
        color: #005baa;
        font-weight: 700;
        margin-bottom: 28px;
    }



/* HEADER TOP */

.tc-header-top {
    background: #ffffff;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.tc-header-top-container {
    width: min(100% - 48px, 1460px);
    height: 46px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.tc-header-top-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tc-header-top-actions {
    display: flex;
    align-items: center;
}

.tc-header-top-link {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0 34px;
    line-height: 1;
}

.tc-header-top-left .tc-header-top-link {
    padding-left: 0;
}

.tc-header-top-actions .tc-header-top-link + .tc-header-top-link {
    border-left: 1px solid #e1e3e8;
}

.tc-header-top-link:hover {
    color: #ff0044;
    text-decoration: none;
}
/* NAVBAR */

.tc-navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.tc-navbar-container {
    width: min(100% - 48px, 1180px);
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tc-navbar-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

    .tc-navbar-logo img {
        width: 190px;
        max-width: 100%;
        height: auto;
        display: block;
    }

.tc-navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.tc-navbar-link {
    color: #16233f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
}

    .tc-navbar-link:hover {
        color: #872f98;
        text-decoration: none;
    }

    .tc-navbar-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 1px;
        height: 2px;
        background: #872f98;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .tc-navbar-link:hover::after {
        transform: scaleX(1);
    }

.tc-navbar-client i {
    font-size: 16px;
    color: #872f98;
}

.tc-navbar-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

    .tc-navbar-toggle span {
        display: block;
        height: 3px;
        background: #16233f;
        border-radius: 999px;
        margin: 6px 0;
    }

/* RESPONSIVE NAVBAR */

@media (max-width: 1100px) {
    .tc-navbar-menu {
        gap: 18px;
    }

    .tc-navbar-link {
        font-size: 14px;
    }

    .tc-navbar-logo img {
        width: 170px;
    }
}

@media (max-width: 930px) {
    .tc-header-top-container,
    .tc-navbar-container {
        width: min(100% - 28px, 100%);
    }

    .tc-navbar-toggle {
        display: block;
    }

    .tc-navbar-menu {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
        padding: 14px 24px 18px;
    }

        .tc-navbar-menu.is-open {
            display: flex;
        }

    .tc-navbar-link {
        width: 100%;
        padding: 13px 0;
        font-size: 15px;
    }

        .tc-navbar-link::after {
            display: none;
        }
}

@media (max-width: 576px) {
    .tc-header-top {
        display: none;
    }

    .tc-navbar-container {
        height: 64px;
    }

    .tc-navbar-logo img {
        width: 158px;
    }

    .tc-navbar-menu {
        top: 64px;
    }
}

.tc-header-top {
    background: #ffffff;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.tc-header-top-container {
    width: min(100% - 48px, 1460px);
    height: 46px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tc-header-top-spacer {
    flex: 1;
}

.tc-header-top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tc-header-top-link {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0 34px;
    line-height: 1;
}

.tc-header-top-actions .tc-header-top-link + .tc-header-top-link {
    border-left: 1px solid #e1e3e8;
}

.tc-header-top-link:hover {
    color: #ff0044;
    text-decoration: none;
}