/* Base Settings and Variables */
:root {
    --tfh-dark-primary: #0F1119;
    --tfh-dark-secondary: #1A1C28;
    --tfh-neon-primary: #00F0FF;
    --tfh-neon-secondary: #FF00B8;
    --tfh-accent: #9D4EDD;
    --tfh-text-primary: #F2F4FF;
    --tfh-text-secondary: #A0A7C4;
    --tfh-error: #FF3D71;
    --tfh-success: #00E676;
    
    --tfh-space-xs: clamp(0.5rem, 0.5vw, 0.75rem);
    --tfh-space-sm: clamp(0.75rem, 1vw, 1rem);
    --tfh-space-md: clamp(1.25rem, 2vw, 2rem);
    --tfh-space-lg: clamp(2rem, 4vw, 3.5rem);
    --tfh-space-xl: clamp(3.5rem, 6vw, 5rem);
    
    --tfh-radius-sm: 4px;
    --tfh-radius-md: 8px;
    --tfh-radius-lg: 16px;
    
    --tfh-border-thin: 1px;
    --tfh-border-medium: 2px;
    --tfh-border-thick: 4px;
    
    --tfh-transition-fast: 0.2s ease;
    --tfh-transition-medium: 0.3s ease;
    --tfh-transition-slow: 0.5s ease;
    
    --tfh-shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    --tfh-shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.3);
    --tfh-shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.4);
    --tfh-shadow-strong: 0 8px 16px rgba(0, 0, 0, 0.5);
    
    --tfh-glow-subtle: 0 0 5px rgba(0, 240, 255, 0.3);
    --tfh-glow-medium: 0 0 10px rgba(0, 240, 255, 0.5);
    --tfh-glow-strong: 0 0 20px rgba(0, 240, 255, 0.7);
    
    --tfh-animation-duration: 0.8s;
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--tfh-dark-primary);
    color: var(--tfh-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--tfh-text-primary);
    text-decoration: none;
    transition: all var(--tfh-transition-medium);
}

a:hover, a:focus {
    color: var(--tfh-neon-primary);
    text-decoration: none;
}

button, .tfh-action {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    outline: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font: inherit;
    color: inherit;
    background: var(--tfh-dark-secondary);
    border: var(--tfh-border-thin) solid var(--tfh-text-secondary);
    border-radius: var(--tfh-radius-sm);
    padding: var(--tfh-space-sm);
    transition: all var(--tfh-transition-medium);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--tfh-neon-primary);
    box-shadow: var(--tfh-glow-subtle);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--tfh-space-md);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: var(--tfh-space-md);
    max-width: 70ch;
    text-wrap: balance;
}

/* Layout */
.tfh-grid {
    display: grid;
    gap: var(--tfh-space-md);
}

.tfh-flex {
    display: flex;
}

.tfh-section {
    padding: var(--tfh-space-lg) 0;
    position: relative;
}

.tfh-wrapper {
    width: min(100% - var(--tfh-space-lg), 1200px);
    margin-inline: auto;
}

.tfh-stack {
    display: grid;
    grid-template-areas: "stack";
}

.tfh-stack > * {
    grid-area: stack;
}

/* Header and Navigation */
.tfh-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(15, 17, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: var(--tfh-border-thin) solid var(--tfh-dark-secondary);
    transition: all var(--tfh-transition-medium);
}

.tfh-header--scrolled {
    box-shadow: var(--tfh-shadow-medium);
}

.tfh-header__inner {
    padding: var(--tfh-space-sm) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tfh-logo {
    display: flex;
    align-items: center;
}

.tfh-logo img {
    height: 40px;
    width: auto;
}

.tfh-nav {
    display: flex;
    align-items: center;
}

.tfh-nav__menu {
    display: flex;
    gap: var(--tfh-space-md);
}

.tfh-nav__link {
    position: relative;
    padding: var(--tfh-space-xs) var(--tfh-space-sm);
    color: var(--tfh-text-primary);
    font-weight: 500;
    transition: all var(--tfh-transition-medium);
}

.tfh-nav__link:hover, .tfh-nav__link:focus {
    color: var(--tfh-neon-primary);
}

.tfh-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tfh-neon-primary);
    transition: all var(--tfh-transition-medium);
}

.tfh-nav__link:hover::after, .tfh-nav__link:focus::after, .tfh-nav__link--active::after {
    width: 100%;
}

.tfh-nav__link--active {
    color: var(--tfh-neon-primary);
}

.tfh-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.tfh-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--tfh-text-primary);
    transition: all var(--tfh-transition-medium);
}

@media (max-width: 768px) {
    .tfh-nav__toggle {
        display: flex;
    }
    
    .tfh-nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--tfh-dark-primary);
        transition: right var(--tfh-transition-medium);
        z-index: 1000;
        gap: var(--tfh-space-lg);
    }
    
    .tfh-nav__menu--open {
        right: 0;
    }
    
    .tfh-nav__toggle--open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .tfh-nav__toggle--open span:nth-child(2) {
        opacity: 0;
    }
    
    .tfh-nav__toggle--open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .tfh-nav__link {
        font-size: 1.5rem;
    }
}

label {
  color: var(--tfh-text-primary);
}

/* Footer */
.tfh-footer {
    background-color: var(--tfh-dark-secondary);
    padding: var(--tfh-space-lg) 0 var(--tfh-space-md);
    margin-top: auto;
}

.tfh-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--tfh-space-lg);
}

.tfh-footer__column {
    display: flex;
    flex-direction: column;
}

.tfh-footer__title {
    font-size: 1.2rem;
    margin-bottom: var(--tfh-space-md);
    color: var(--tfh-neon-primary);
}

.tfh-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--tfh-space-xs);
}

.tfh-footer__link {
    color: var(--tfh-text-secondary);
    transition: color var(--tfh-transition-medium);
}

.tfh-footer__link:hover, .tfh-footer__link:focus {
    color: var(--tfh-neon-primary);
}

.tfh-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--tfh-space-sm);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-footer__contact-icon {
    color: var(--tfh-neon-primary);
    font-size: 1.2rem;
    min-width: 20px;
}

.tfh-footer__bottom {
    border-top: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.2);
    margin-top: var(--tfh-space-lg);
    padding-top: var(--tfh-space-md);
    text-align: center;
    color: var(--tfh-text-secondary);
    font-size: 0.9rem;
}

.tfh-footer__bottom > p {
  margin: 0 auto;
}

.tfh-footer__policies {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--tfh-space-md);
    margin-top: var(--tfh-space-sm);
}

/* Buttons */
.tfh-action-primary, .tfh-action-secondary, .tfh-action-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--tfh-space-xs);
    padding: var(--tfh-space-sm) var(--tfh-space-md);
    border-radius: var(--tfh-radius-md);
    font-weight: 500;
    transition: all var(--tfh-transition-medium);
    cursor: pointer;
    text-align: center;
}

.tfh-action-primary {
    background: linear-gradient(135deg, var(--tfh-neon-primary), var(--tfh-neon-secondary));
    color: var(--tfh-dark-primary);
    border: none;
    box-shadow: var(--tfh-shadow-subtle);
}

.tfh-action-primary:hover, .tfh-action-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--tfh-shadow-medium), var(--tfh-glow-subtle);
    color: var(--tfh-dark-primary);
}

.tfh-action-secondary {
    background-color: transparent;
    color: var(--tfh-neon-primary);
    border: var(--tfh-border-thin) solid var(--tfh-neon-primary);
}

.tfh-action-secondary:hover, .tfh-action-secondary:focus {
    background-color: rgba(0, 240, 255, 0.1);
    box-shadow: var(--tfh-glow-subtle);
    color: var(--tfh-neon-primary);
}

.tfh-action-ghost {
    background-color: transparent;
    color: var(--tfh-text-primary);
    border: none;
}

.tfh-action-ghost:hover, .tfh-action-ghost:focus {
    color: var(--tfh-neon-primary);
    background-color: rgba(0, 240, 255, 0.05);
}

/* Forms */
.tfh-form {
    display: grid;
    gap: var(--tfh-space-md);
    max-width: 600px;
    margin: 0 auto;
}

.tfh-form__group {
    display: grid;
    gap: var(--tfh-space-xs);
}

.tfh-form__label {
    font-weight: 500;
    color: var(--tfh-text-secondary);
}

.tfh-form__input, .tfh-form__textarea, .tfh-form__select {
    width: 100%;
    padding: var(--tfh-space-sm);
    background-color: var(--tfh-dark-secondary);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.3);
    border-radius: var(--tfh-radius-sm);
    color: var(--tfh-text-primary);
    transition: all var(--tfh-transition-medium);
}

.tfh-form__input:focus, .tfh-form__textarea:focus, .tfh-form__select:focus {
    border-color: var(--tfh-neon-primary);
    box-shadow: var(--tfh-glow-subtle);
    background-color: var(--tfh-dark-secondary);
}

.tfh-form__textarea {
    min-height: 150px;
    resize: vertical;
}

.tfh-form__checkbox {
    display: flex;
    gap: var(--tfh-space-sm);
    align-items: flex-start;
}

.tfh-form__checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: var(--tfh-border-thin) solid var(--tfh-text-secondary);
    border-radius: var(--tfh-radius-sm);
    background-color: var(--tfh-dark-secondary);
    cursor: pointer;
    position: relative;
}

.tfh-form__checkbox input[type="checkbox"]:checked {
    background-color: var(--tfh-neon-primary);
    border-color: var(--tfh-neon-primary);
}

.tfh-form__checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    font-size: 14px;
    color: var(--tfh-dark-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tfh-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--tfh-space-md);
    margin-top: var(--tfh-space-md);
}

/* Error message */
.tfh-form__error {
    color: var(--tfh-error);
    font-size: 0.9rem;
    margin-top: var(--tfh-space-xs);
}

/* Custom phone input styling */
.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
    }
}

/* Home Page Specific */
.tfh-showcase {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.tfh-showcase__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--tfh-space-lg);
}

.tfh-showcase__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: var(--tfh-space-md);
    background: linear-gradient(135deg, var(--tfh-neon-primary), var(--tfh-neon-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--tfh-glow-subtle);
}

.tfh-showcase__subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-lg);
}

.tfh-showcase__actions {
    display: flex;
    justify-content: center;
    gap: var(--tfh-space-md);
    flex-wrap: wrap;
}

.tfh-showcase__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.tfh-showcase__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--tfh-dark-primary) 80%);
    z-index: 1;
}

/* Features Section */
.tfh-features {
    padding: var(--tfh-space-xl) 0;
}

.tfh-features__header {
    text-align: center;
    margin-bottom: var(--tfh-space-xl);
}

.tfh-features__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-features__subtitle {
    max-width: 700px;
    margin-inline: auto;
    color: var(--tfh-text-secondary);
}

.tfh-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tfh-space-lg);
}

.tfh-feature-card {
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    transition: all var(--tfh-transition-medium);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.tfh-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tfh-shadow-medium), var(--tfh-glow-subtle);
    border-color: var(--tfh-neon-primary);
}

.tfh-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--tfh-neon-primary), var(--tfh-neon-secondary));
    opacity: 0;
    transition: opacity var(--tfh-transition-medium);
}

.tfh-feature-card:hover::before {
    opacity: 1;
}

.tfh-feature-card__icon {
    color: var(--tfh-neon-primary);
    font-size: 2.5rem;
    margin-bottom: var(--tfh-space-md);
}

.tfh-feature-card__title {
    margin-bottom: var(--tfh-space-sm);
    font-size: 1.5rem;
}

.tfh-feature-card__content {
    color: var(--tfh-text-secondary);
}

/* About Section */
.tfh-about {
    padding: var(--tfh-space-xl) 0;
    position: relative;
    overflow: hidden;
}

.tfh-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tfh-space-lg);
    align-items: center;
}

.tfh-about__content {
    padding: var(--tfh-space-lg);
}

.tfh-about__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-about__text {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-lg);
}

.tfh-about__image-wrapper {
    position: relative;
    border-radius: var(--tfh-radius-lg);
    overflow: hidden;
    box-shadow: var(--tfh-shadow-strong);
}

.tfh-about__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--tfh-transition-slow);
}

.tfh-about__image-wrapper:hover .tfh-about__image {
    transform: scale(1.05);
}

.tfh-about__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--tfh-space-md);
    margin-top: var(--tfh-space-lg);
}

.tfh-stat {
    text-align: center;
}

.tfh-stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-xs);
}

.tfh-stat__label {
    color: var(--tfh-text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .tfh-about__grid {
        grid-template-columns: 1fr;
    }
    
    .tfh-about__image-wrapper {
        order: -1;
    }
}

/* Services Section */
.tfh-services {
    padding: var(--tfh-space-xl) 0;
    background-color: var(--tfh-dark-secondary);
}

.tfh-services__header {
    text-align: center;
    margin-bottom: var(--tfh-space-xl);
}

.tfh-services__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-services__description {
    max-width: 700px;
    margin-inline: auto;
    color: var(--tfh-text-secondary);
}

.tfh-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tfh-space-lg);
}

.tfh-service-card {
    background-color: var(--tfh-dark-primary);
    border-radius: var(--tfh-radius-lg);
    overflow: hidden;
    transition: all var(--tfh-transition-medium);
    box-shadow: var(--tfh-shadow-medium);
}

.tfh-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tfh-shadow-strong), var(--tfh-glow-subtle);
}

.tfh-service-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--tfh-transition-medium);
}

.tfh-service-card:hover .tfh-service-card__image {
    transform: scale(1.05);
}

.tfh-service-card__content {
    padding: var(--tfh-space-lg);
}

.tfh-service-card__title {
    margin-bottom: var(--tfh-space-sm);
    color: var(--tfh-neon-primary);
}

.tfh-service-card__description {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-md);
}

/* Testimonials Section */
.tfh-testimonials {
    padding: var(--tfh-space-xl) 0;
    background: linear-gradient(to bottom, var(--tfh-dark-primary), var(--tfh-dark-secondary));
}

.tfh-testimonials__header {
    text-align: center;
    margin-bottom: var(--tfh-space-xl);
}

.tfh-testimonials__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.swiper-container {
    width: 100%;
    padding-bottom: var(--tfh-space-xl);
}

.tfh-testimonial {
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.1);
    transition: all var(--tfh-transition-medium);
    height: 100%;
}

.tfh-testimonial:hover {
    box-shadow: var(--tfh-shadow-medium), var(--tfh-glow-subtle);
    border-color: var(--tfh-neon-primary);
}

.tfh-testimonial__content {
    color: var(--tfh-text-secondary);
    font-style: italic;
    margin-bottom: var(--tfh-space-md);
    position: relative;
}

.tfh-testimonial__content::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--tfh-neon-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.tfh-testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--tfh-space-md);
}

.tfh-testimonial__author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: var(--tfh-border-thin) solid var(--tfh-neon-primary);
}

.tfh-testimonial__author-info {
    display: flex;
    flex-direction: column;
}

.tfh-testimonial__author-name {
    font-weight: 600;
    color: var(--tfh-text-primary);
}

.tfh-testimonial__author-title {
    font-size: 0.9rem;
    color: var(--tfh-text-secondary);
}

/* Contact Section */
.tfh-contact {
    padding: var(--tfh-space-xl) 0;
    position: relative;
    overflow: hidden;
}

.tfh-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tfh-space-lg);
    align-items: center;
}

.tfh-contact__content {
    padding: var(--tfh-space-md);
}

.tfh-contact__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-contact__text {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-lg);
}

.tfh-contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--tfh-space-md);
}

.tfh-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--tfh-space-md);
}

.tfh-contact__info-icon {
    color: var(--tfh-neon-primary);
    font-size: 1.5rem;
    min-width: 24px;
}

.tfh-contact__info-text {
    color: var(--tfh-text-secondary);
}

.tfh-contact__form-wrapper {
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    box-shadow: var(--tfh-shadow-strong);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.1);
}

@media (max-width: 768px) {
    .tfh-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* Articles Section */
.tfh-articles {
    padding: var(--tfh-space-xl) 0;
    background-color: var(--tfh-dark-primary);
}

.tfh-articles__header {
    text-align: center;
    margin-bottom: var(--tfh-space-xl);
}

.tfh-articles__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-articles__description {
    max-width: 700px;
    margin-inline: auto;
    color: var(--tfh-text-secondary);
}

.tfh-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tfh-space-lg);
}

.tfh-article-card {
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    overflow: hidden;
    transition: all var(--tfh-transition-medium);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.1);
}

.tfh-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tfh-shadow-medium), var(--tfh-glow-subtle);
    border-color: var(--tfh-neon-primary);
}

.tfh-article-card__image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tfh-article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tfh-transition-medium);
}

.tfh-article-card:hover .tfh-article-card__image {
    transform: scale(1.05);
}

.tfh-article-card__content {
    padding: var(--tfh-space-lg);
}

.tfh-article-card__meta {
    display: flex;
    gap: var(--tfh-space-md);
    margin-bottom: var(--tfh-space-sm);
    color: var(--tfh-text-secondary);
    font-size: 0.9rem;
}

.tfh-article-card__date {
    display: flex;
    align-items: center;
    gap: var(--tfh-space-xs);
}

.tfh-article-card__title {
    margin-bottom: var(--tfh-space-sm);
    transition: color var(--tfh-transition-medium);
}

.tfh-article-card:hover .tfh-article-card__title {
    color: var(--tfh-neon-primary);
}

.tfh-article-card__excerpt {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--tfh-space-xs);
    color: var(--tfh-neon-primary);
    font-weight: 500;
}

.tfh-article-card__read-more i {
    transition: transform var(--tfh-transition-medium);
}

.tfh-article-card__read-more:hover i {
    transform: translateX(4px);
}

/* Page Header */
.tfh-page-header {
    padding: 140px 0 80px;
    background-color: var(--tfh-dark-secondary);
    position: relative;
    overflow: hidden;
}

.tfh-page-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tfh-page-header__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-page-header__description {
    max-width: 700px;
    margin-inline: auto;
    color: var(--tfh-text-secondary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.tfh-animate-fade-in {
    animation: fadeIn var(--tfh-animation-duration) ease-out forwards;
}

/* Cookie Consent */
.tfh-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 40px), 600px);
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    box-shadow: var(--tfh-shadow-strong);
    z-index: 9999;
    display: none;
    border: var(--tfh-border-thin) solid var(--tfh-accent);
}

.tfh-cookie-consent__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-sm);
}

.tfh-cookie-consent__text {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--tfh-space-sm);
}

.tfh-cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 25, 0.9);
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.tfh-cookie-settings__content {
    width: min(calc(100% - 40px), 600px);
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    box-shadow: var(--tfh-shadow-strong);
    margin: 40px auto;
    border: var(--tfh-border-thin) solid var(--tfh-accent);
}

.tfh-cookie-settings__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--tfh-space-lg);
}

.tfh-cookie-settings__title {
    color: var(--tfh-neon-primary);
}

.tfh-cookie-settings__close {
    color: var(--tfh-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--tfh-transition-medium);
}

.tfh-cookie-settings__close:hover {
    color: var(--tfh-neon-primary);
}

.tfh-cookie-settings__tabs {
    display: flex;
    border-bottom: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.2);
    margin-bottom: var(--tfh-space-md);
}

.tfh-cookie-settings__tab {
    padding: var(--tfh-space-sm) var(--tfh-space-md);
    color: var(--tfh-text-secondary);
    cursor: pointer;
    transition: all var(--tfh-transition-medium);
}

.tfh-cookie-settings__tab--active, .tfh-cookie-settings__tab:hover {
    color: var(--tfh-neon-primary);
    border-bottom: 2px solid var(--tfh-neon-primary);
}

.tfh-cookie-settings__panel {
    display: none;
    margin-bottom: var(--tfh-space-lg);
}

.tfh-cookie-settings__panel--active {
    display: block;
}

.tfh-cookie-category {
    margin-bottom: var(--tfh-space-md);
}

.tfh-cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--tfh-space-sm);
}

.tfh-cookie-category__title {
    font-weight: 600;
    color: var(--tfh-text-primary);
}

.tfh-cookie-category__toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.tfh-cookie-category__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.tfh-cookie-category__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(160, 167, 196, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.tfh-cookie-category__slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--tfh-text-primary);
    transition: .4s;
    border-radius: 50%;
}

.tfh-cookie-category__toggle input:checked + .tfh-cookie-category__slider {
    background-color: var(--tfh-neon-primary);
}

.tfh-cookie-category__toggle input:checked + .tfh-cookie-category__slider:before {
    transform: translateX(26px);
}

.tfh-cookie-category__description {
    color: var(--tfh-text-secondary);
    font-size: 0.9rem;
}

.tfh-cookie-settings__actions {
    display: flex;
    justify-content: space-between;
    gap: var(--tfh-space-md);
    flex-direction: column;
}

.tfh-cookie-settings__save {
    margin-left: auto;
}

.tfh-cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--tfh-dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--tfh-shadow-medium);
    z-index: 9998;
    transition: all var(--tfh-transition-medium);
    border: var(--tfh-border-thin) solid var(--tfh-accent);
}

.tfh-cookie-settings-trigger:hover {
    box-shadow: var(--tfh-shadow-strong), var(--tfh-glow-subtle);
}

.tfh-cookie-settings-trigger i {
    color: var(--tfh-neon-primary);
    font-size: 1.5rem;
}

/* Modal */
.tfh-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 25, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--tfh-space-md);
}

.tfh-modal__content {
    width: min(calc(100% - 40px), 500px);
    background-color: var(--tfh-dark-secondary);
    border-radius: var(--tfh-radius-lg);
    padding: var(--tfh-space-lg);
    position: relative;
    box-shadow: var(--tfh-shadow-strong);
    border: var(--tfh-border-thin) solid var(--tfh-accent);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.tfh-modal__close {
    position: absolute;
    top: var(--tfh-space-md);
    right: var(--tfh-space-md);
    color: var(--tfh-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--tfh-transition-medium);
}

.tfh-modal__close:hover {
    color: var(--tfh-neon-primary);
}

.tfh-modal__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-modal__text {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-lg);
}

.tfh-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--tfh-space-md);
}

/* Utilities */
.tfh-text-primary {
    color: var(--tfh-text-primary);
}

.tfh-text-secondary {
    color: var(--tfh-text-secondary);
}

.tfh-text-accent {
    color: var(--tfh-neon-primary);
}

.tfh-text-center {
    text-align: center;
}

.tfh-text-right {
    text-align: right;
}

.tfh-text-left {
    text-align: left;
}

.tfh-mt-xs {
    margin-top: var(--tfh-space-xs);
}

.tfh-mt-sm {
    margin-top: var(--tfh-space-sm);
}

.tfh-mt-md {
    margin-top: var(--tfh-space-md);
}

.tfh-mt-lg {
    margin-top: var(--tfh-space-lg);
}

.tfh-mt-xl {
    margin-top: var(--tfh-space-xl);
}

.tfh-mb-xs {
    margin-bottom: var(--tfh-space-xs);
}

.tfh-mb-sm {
    margin-bottom: var(--tfh-space-sm);
}

.tfh-mb-md {
    margin-bottom: var(--tfh-space-md);
}

.tfh-mb-lg {
    margin-bottom: var(--tfh-space-lg);
}

.tfh-mb-xl {
    margin-bottom: var(--tfh-space-xl);
}

.tfh-p-xs {
    padding: var(--tfh-space-xs);
}

.tfh-p-sm {
    padding: var(--tfh-space-sm);
}

.tfh-p-md {
    padding: var(--tfh-space-md);
}

.tfh-p-lg {
    padding: var(--tfh-space-lg);
}

.tfh-p-xl {
    padding: var(--tfh-space-xl);
}

.tfh-w-full {
    width: 100%;
}

.tfh-h-full {
    height: 100%;
}

.tfh-d-none {
    display: none;
}

.tfh-d-block {
    display: block;
}

.tfh-d-flex {
    display: flex;
}

.tfh-d-grid {
    display: grid;
}

/* Thank You Page */
.tfh-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: var(--tfh-space-lg);
}

.tfh-thanks__icon {
    font-size: 5rem;
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-lg);
    animation: pulse 2s infinite;
}

.tfh-thanks__title {
    font-size: 3rem;
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-thanks__text {
    max-width: 600px;
    margin-bottom: var(--tfh-space-lg);
    color: var(--tfh-text-secondary);
}

/* Policy Pages */
.tfh-policy {
    padding: var(--tfh-space-xl) 0;
}

.tfh-policy__header {
    margin-bottom: var(--tfh-space-xl);
}

.tfh-policy__title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-policy__date {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-lg);
}

.tfh-policy__content {
    max-width: 800px;
    margin: 0 auto;
}

.tfh-policy__section {
    margin-bottom: var(--tfh-space-lg);
}

.tfh-policy__section-title {
    color: var(--tfh-neon-primary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-policy__text {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-md);
}

.tfh-policy__list {
    color: var(--tfh-text-secondary);
    margin-bottom: var(--tfh-space-md);
    padding-left: var(--tfh-space-lg);
}

.tfh-policy__list li {
    margin-bottom: var(--tfh-space-sm);
}

/* Map */
.tfh-map {
    width: 100%;
    height: 400px;
    border-radius: var(--tfh-radius-lg);
    overflow: hidden;
    margin-bottom: var(--tfh-space-lg);
    box-shadow: var(--tfh-shadow-medium);
    border: var(--tfh-border-thin) solid rgba(160, 167, 196, 0.1);
}

/* Neon Accent */
.tfh-neon-accent {
    position: relative;
}

.tfh-neon-accent::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--tfh-neon-primary), var(--tfh-neon-secondary));
    left: 0;
    bottom: -5px;
    box-shadow: var(--tfh-glow-medium);
}

/* Print styles */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .tfh-header, .tfh-footer, .tfh-cookie-consent, .tfh-cookie-settings-trigger {
        display: none;
    }
}