:root {
    --tu-primary: #1e3c72;
    --tu-primary-light: #2a5298;
    --tu-accent: #d4af37;
    --tu-accent-light: #f0d878;
    --tu-dark: #0f172a;
    --tu-text: #2d3748;
    --tu-muted: #718096;
    --tu-bg: #f8fafc;
    --tu-white: #ffffff;
    --tu-radius: 16px;
    --tu-shadow: 0 10px 40px rgba(30, 60, 114, 0.12);
    --tu-font: Bahij Nassim, Tahoma, Arial, sans-serif;
}

@font-face {
    font-family: 'Bahij Nassim';
    src: url('../../assets/fonts/bregular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--tu-font);
    color: var(--tu-text);
    background: var(--tu-bg);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

a { text-decoration: none; transition: color 0.2s, opacity 0.2s; }

/* Preloader */
.tu-preloader {
    position: fixed;
    inset: 0;
    background: var(--tu-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s, visibility 0.4s;
}

.tu-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tu-preloader-inner {
    text-align: center;
    color: #fff;
}

.tu-preloader-inner img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: tu-pulse 1.5s ease infinite;
}

@keyframes tu-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

/* Navbar */
.tu-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.tu-nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 0.55rem 0;
}

.tu-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tu-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.tu-nav.scrolled .tu-brand { color: var(--tu-primary); }

.tu-brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.tu-nav.scrolled .tu-brand img { border-color: var(--tu-primary-light); }

.tu-brand-text h1 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.tu-brand-text span {
    font-size: 0.75rem;
    opacity: 0.85;
}

.tu-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tu-nav-menu > li > a,
.tu-nav-menu > li > .tu-nav-link {
    display: block;
    padding: 0.55rem 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 8px;
}

.tu-nav.scrolled .tu-nav-menu > li > a,
.tu-nav.scrolled .tu-nav-menu > li > .tu-nav-link {
    color: var(--tu-text);
}

.tu-nav-menu > li > a:hover,
.tu-nav-menu > li > a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.tu-nav.scrolled .tu-nav-menu > li > a:hover,
.tu-nav.scrolled .tu-nav-menu > li > a.active {
    background: #ebf4ff;
    color: var(--tu-primary);
}

.tu-nav-cta {
    background: var(--tu-accent) !important;
    color: var(--tu-dark) !important;
    border-radius: 10px !important;
    padding: 0.55rem 1.1rem !important;
}

.tu-nav-cta:hover {
    background: var(--tu-accent-light) !important;
    transform: translateY(-1px);
}

.tu-dropdown { position: relative; }

.tu-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--tu-shadow);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    list-style: none;
    margin: 0;
}

.tu-dropdown:hover .tu-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.tu-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--tu-text);
    border-radius: 8px;
    font-size: 0.88rem;
}

.tu-dropdown-menu a:hover {
    background: #ebf4ff;
    color: var(--tu-primary);
}

.tu-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

.tu-nav.scrolled .tu-nav-toggle { color: var(--tu-primary); }

/* Hero */
.tu-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tu-hero-slider { position: absolute; inset: 0; }

.tu-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.tu-hero-slide.active { opacity: 1; }

.tu-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 60, 114, 0.75) 45%, rgba(42, 82, 152, 0.65) 100%);
}

.tu-hero-slide-fallback {
    background: linear-gradient(135deg, #0f172a 0%, #1e3c72 50%, #2a5298 100%);
}

.tu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: #fff;
}

.tu-hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tu-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--tu-accent-light);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.tu-hero h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.tu-hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto 2rem;
    opacity: 0.92;
    line-height: 1.8;
}

.tu-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tu-btn:hover { transform: translateY(-2px); }

.tu-btn-primary {
    background: var(--tu-accent);
    color: var(--tu-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.tu-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.tu-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tu-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.tu-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tu-hero-dot.active {
    background: var(--tu-accent);
    width: 28px;
    border-radius: 5px;
}

.tu-scroll-down {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: tu-bounce 2s infinite;
}

@keyframes tu-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Stats */
.tu-stats {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding: 0 1.25rem;
}

.tu-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tu-stat-card {
    background: #fff;
    border-radius: var(--tu-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--tu-shadow);
    transition: transform 0.25s;
}

.tu-stat-card:hover { transform: translateY(-4px); }

.tu-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #ebf4ff, #dbeafe);
    color: var(--tu-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.tu-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tu-primary);
    line-height: 1;
}

.tu-stat-label {
    font-size: 0.88rem;
    color: var(--tu-muted);
    margin-top: 0.35rem;
}

/* Sections */
.tu-section {
    padding: 5rem 1.25rem;
}

.tu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tu-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tu-section-tag {
    display: inline-block;
    background: #ebf4ff;
    color: var(--tu-primary);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tu-section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--tu-primary);
    margin: 0 0 0.75rem;
}

.tu-section-header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--tu-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* About cards */
.tu-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tu-about-card {
    background: #fff;
    border-radius: var(--tu-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tu-about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tu-shadow);
}

.tu-about-card-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tu-about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tu-about-card-img .tu-icon-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.tu-about-card-body {
    padding: 1.5rem;
}

.tu-about-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tu-primary);
    margin: 0 0 0.75rem;
}

.tu-about-card-body p {
    font-size: 0.92rem;
    color: var(--tu-muted);
    line-height: 1.85;
    margin: 0;
}

/* Messages accordion */
.tu-messages {
    background: linear-gradient(180deg, #f0f4f8 0%, var(--tu-bg) 100%);
}

.tu-accordion-item {
    background: #fff;
    border-radius: var(--tu-radius);
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tu-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--tu-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--tu-primary);
    text-align: right;
}

.tu-accordion-header i {
    transition: transform 0.3s;
    color: var(--tu-accent);
}

.tu-accordion-item.open .tu-accordion-header i {
    transform: rotate(180deg);
}

.tu-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.tu-accordion-item.open .tu-accordion-body {
    max-height: 600px;
}

.tu-accordion-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.tu-accordion-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #ebf4ff;
}

.tu-accordion-content p {
    margin: 0;
    line-height: 1.9;
    color: var(--tu-muted);
    font-size: 0.95rem;
}

/* Gallery */
.tu-gallery-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
}

.tu-gallery-track::-webkit-scrollbar { height: 6px; }
.tu-gallery-track::-webkit-scrollbar-thumb {
    background: var(--tu-primary-light);
    border-radius: 3px;
}

.tu-gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tu-gallery-item:hover { transform: scale(1.03); }

.tu-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Quick links */
.tu-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tu-link-card {
    background: #fff;
    border-radius: var(--tu-radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    color: var(--tu-text);
    border: 2px solid transparent;
}

.tu-link-card:hover {
    border-color: var(--tu-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--tu-shadow);
    color: var(--tu-primary);
}

.tu-link-card i {
    font-size: 2rem;
    color: var(--tu-primary);
    margin-bottom: 0.75rem;
    display: block;
}

.tu-link-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.tu-link-card span {
    font-size: 0.82rem;
    color: var(--tu-muted);
}

/* CTA */
.tu-cta {
    background: linear-gradient(135deg, var(--tu-primary) 0%, var(--tu-primary-light) 100%);
    border-radius: var(--tu-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
    margin: 0 1.25rem;
    max-width: calc(1200px - 2.5rem);
    margin-left: auto;
    margin-right: auto;
}

.tu-cta h3 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
}

.tu-cta p {
    opacity: 0.9;
    margin: 0 0 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.tu-footer {
    background: var(--tu-dark);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4rem;
}

.tu-footer-top {
    padding: 3rem 1.25rem;
}

.tu-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.tu-footer-brand img {
    width: 64px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.tu-footer-brand h4 {
    color: #fff;
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
}

.tu-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0;
}

.tu-footer-links h5 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.tu-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tu-footer-links li { margin-bottom: 0.5rem; }

.tu-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.tu-footer-links a:hover { color: var(--tu-accent); }

.tu-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tu-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.tu-social a:hover {
    background: var(--tu-accent);
    color: var(--tu-dark);
}

.tu-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    text-align: center;
    font-size: 0.88rem;
    opacity: 0.7;
}

/* Animations */
.tu-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tu-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .tu-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tu-about-grid { grid-template-columns: 1fr; }
    .tu-links-grid { grid-template-columns: repeat(2, 1fr); }
    .tu-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .tu-nav-toggle { display: block; }

    .tu-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.25rem 2rem;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.3s;
        overflow-y: auto;
    }

    .tu-nav-menu.open { right: 0; }

    .tu-nav-menu > li > a,
    .tu-nav-menu > li > .tu-nav-link {
        color: var(--tu-text);
        padding: 0.85rem 1rem;
    }

    .tu-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-right: 1rem;
        display: none;
    }

    .tu-dropdown.open .tu-dropdown-menu { display: block; }

    .tu-stats-grid { grid-template-columns: 1fr 1fr; }
    .tu-accordion-content { flex-direction: column; align-items: center; text-align: center; }
    .tu-hero-content { padding-top: 6rem; }
}

@media (max-width: 480px) {
    .tu-stats-grid,
    .tu-links-grid { grid-template-columns: 1fr; }
}

/* Inner pages */
body.tu-inner-page { padding-top: 72px; }

body.tu-inner-page .tu-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 0.55rem 0;
}

body.tu-inner-page .tu-brand { color: var(--tu-primary); }
body.tu-inner-page .tu-brand img { border-color: var(--tu-primary-light); }
body.tu-inner-page .tu-nav-menu > li > a,
body.tu-inner-page .tu-nav-menu > li > .tu-nav-link { color: var(--tu-text); }
body.tu-inner-page .tu-nav-toggle { color: var(--tu-primary); }

.tu-page-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 55%, #3b6cb5 100%);
    color: #fff;
    padding: 3.5rem 1.25rem 3rem;
    text-align: center;
}

.tu-page-banner h1 {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.tu-page-banner p {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.8;
}

.tu-page-content { padding: 3rem 1.25rem 4rem; }

.tu-container-narrow { max-width: 900px; margin: 0 auto; }

.tu-card {
    background: #fff;
    border-radius: var(--tu-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.tu-card h3 {
    color: var(--tu-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.tu-card p, .tu-card li {
    color: var(--tu-muted);
    line-height: 1.85;
    font-size: 0.95rem;
}

.tu-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tu-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tu-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tu-form-group { margin-bottom: 1rem; }

.tu-form-group label {
    display: block;
    font-weight: 600;
    color: var(--tu-text);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.tu-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d8e0ea;
    border-radius: 10px;
    font-family: var(--tu-font);
    font-size: 0.95rem;
    direction: rtl;
    text-align: right;
}

.tu-form-control:focus {
    outline: none;
    border-color: var(--tu-primary-light);
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.15);
}

textarea.tu-form-control { min-height: 130px; resize: vertical; }

.tu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tu-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tu-contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ebf4ff;
    color: var(--tu-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tu-contact-item strong {
    display: block;
    color: var(--tu-primary);
    margin-bottom: 0.2rem;
}

.tu-contact-item span, .tu-contact-item a {
    color: var(--tu-muted);
    font-size: 0.92rem;
}

.tu-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tu-team-card {
    background: #fff;
    border-radius: var(--tu-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: center;
}

.tu-team-card:hover { transform: translateY(-6px); }

.tu-team-photo {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #ebf4ff, #dbeafe);
}

.tu-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tu-team-body { padding: 1.25rem; }

.tu-team-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tu-primary);
    margin: 0 0 0.35rem;
}

.tu-team-role {
    color: var(--tu-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tu-team-body p {
    font-size: 0.88rem;
    color: var(--tu-muted);
    line-height: 1.7;
    margin: 0;
}

.tu-download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.tu-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.tu-tab-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--tu-muted);
    font-family: var(--tu-font);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.2s;
}

.tu-tab-btn.active {
    background: #ebf4ff;
    color: var(--tu-primary);
}

.tu-tab-panel { display: none; }
.tu-tab-panel.active { display: block; }

.tu-tab-panel img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tu-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.tu-album-grid a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tu-album-grid a:hover { transform: scale(1.03); }

.tu-album-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.tu-gallery-card {
    background: #fff;
    border-radius: var(--tu-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    color: var(--tu-text);
    text-decoration: none;
    display: block;
}

.tu-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tu-shadow);
}

.tu-gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tu-gallery-card-body {
    padding: 1rem;
    text-align: center;
}

.tu-gallery-card-body h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--tu-primary);
}

.tu-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
}

.tu-sitemap-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    color: var(--tu-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.tu-sitemap-list a:hover {
    background: #ebf4ff;
    color: var(--tu-primary);
    transform: translateX(-4px);
}

.tu-sitemap-list i { color: var(--tu-primary); }

.tu-kankor-search {
    max-width: 520px;
    margin: 0 auto;
}

.tu-kankor-result {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tu-kankor-loader {
    display: none;
    text-align: center;
    padding: 1rem;
}

.tu-feature-img {
    width: 100%;
    border-radius: var(--tu-radius);
    box-shadow: var(--tu-shadow);
    margin: 1.5rem 0;
}

.tu-list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tu-list-check li {
    padding: 0.5rem 0;
    padding-right: 1.75rem;
    position: relative;
}

.tu-list-check li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    right: 0;
    color: #276749;
}

.tu-breadcrumb {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.tu-breadcrumb a { color: rgba(255,255,255,0.9); }

.tu-video-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.tu-video {
    width: 100%;
    display: block;
    background: #000;
    min-height: 220px;
}

@media (max-width: 992px) {
    .tu-grid-2, .tu-grid-3, .tu-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body.tu-inner-page { padding-top: 64px; }
    .tu-page-banner { padding: 2.5rem 1rem 2rem; }
}
