/* ==========================================================================
   Hero Header: Title, Logo, Description & Subtitle Styles
   Location: css/title-logo-description-subtitle.css
   ========================================================================== */

/* 1. Pure Glowing Hero Logo */
.tc-hero-logo-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.tc-hero-brand-logo {
    width: 72px !important;
    height: 72px !important;
    color: var(--primary-color, #6f69ff) !important;
    filter: drop-shadow(0 0 25px rgba(111, 105, 255, 0.6)) !important;
    transition: filter 0.4s ease, transform 0.4s ease !important;
}

.tc-home-hero-section:hover .tc-hero-brand-logo {
    filter: drop-shadow(0 0 40px rgba(111, 105, 255, 0.9)) !important;
    transform: scale(1.05) !important;
}

/* 2. Headline Typography */
.tc-hero-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -2px !important;
    line-height: 1.1 !important;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* 3. Subtitle Links & Underline */
.tc-hero-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 500 !important;
    color: #cbd5e1 !important;
    margin: 0 0 35px 0 !important;
    letter-spacing: -0.5px !important;
}

.tc-hero-subtitle a {
    font-family: 'Poppins', sans-serif !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
    transition: color 0.3s ease !important;
}

.tc-hero-subtitle a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 0 !important;
    width: 100% !important;
    height: 12px !important;
    background-image: url('/images/borderbg.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease !important;
}

.tc-hero-subtitle a:hover {
    color: var(--primary-color, #6f69ff) !important;
}

.tc-hero-subtitle a:hover::after {
    transform: translateY(2px) scale(1.05) !important;
    filter: brightness(1.2) !important;
}

/* 4. Lead Description */
.tc-hero-desc {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
    margin: 0 auto 40px auto !important;
    line-height: 1.7 !important;
    max-width: 750px !important;
}

@media (max-width: 1024px) {
    .tc-hero-title { font-size: 3.5rem !important; }
}

@media (max-width: 768px) {
    .tc-hero-title { font-size: 2.2rem !important; letter-spacing: -1px !important; }
    .tc-hero-subtitle { font-size: 1.25rem !important; }
    .tc-hero-desc { font-size: 1rem !important; margin-bottom: 30px !important; }
    .tc-hero-brand-logo { width: 50px !important; height: 50px !important; }
}