/* Training Landing Page - ASIA Academy */
/* Import Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables & Base Styles
======================================== */
:root {
    --primary-purple: #5B3A8F;
    --dark-purple: #4A2F73;
    --light-purple: #7B5BA8;
    --green: #4CAF50;
    --light-green: #66BB6A;
    --dark-green: #388E3C;
    --cream: #F5F1E8;
    --white: #ffffff;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-900: #171717;
    --font-family: 'Cairo', 'Noto Kufi Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   Base Reset & Typography
======================================== */
.training-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.training-landing {
    font-family: var(--font-family);
    background-color: var(--cream);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
.training-landing[dir='rtl'] {
    direction: rtl;
    text-align: right;
}

.training-landing[dir='ltr'] {
    direction: ltr;
    text-align: left;
}

/* ========================================
   Utility Classes
======================================== */
.tl-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .tl-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tl-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ========================================
   Navigation
======================================== */
.tl-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.tl-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tl-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, var(--primary-purple), var(--light-purple));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.tl-logo-text h1 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-purple);
    line-height: 1.2;
}

.tl-logo-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.tl-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tl-home-btn,
.tl-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(91, 58, 143, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.tl-home-btn:hover,
.tl-lang-btn:hover {
    background-color: rgba(91, 58, 143, 0.2);
}

.tl-home-btn svg,
.tl-lang-btn svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary-purple);
}

.tl-home-btn span,
.tl-lang-btn span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-purple);
}

.tl-menu-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.tl-menu-btn:hover {
    background-color: #f3f4f6;
}

.tl-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-purple);
}

@media (min-width: 1024px) {
    .tl-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.tl-mobile-menu {
    display: none;
    border-top: 1px solid rgba(91, 58, 143, 0.1);
    background-color: white;
}

.tl-mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .tl-mobile-menu {
        display: none !important;
    }
}

.tl-mobile-menu-inner {
    padding: 1rem;
}

.tl-mobile-menu-inner a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
}

.tl-mobile-menu-inner a:hover {
    background-color: rgba(91, 58, 143, 0.1);
}

/* ========================================
   Hero Section
======================================== */
.tl-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tl-hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle, var(--primary-purple) 1px, transparent 1px);
    background-size: 24px 24px;
}

.tl-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(245, 241, 232, 0.5), var(--cream));
}

.tl-hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .tl-hero-content {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tl-hero-content {
        padding: 5rem 2rem;
    }
}

.tl-hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    border: 1px solid rgba(91, 58, 143, 0.2);
}

.tl-hero-badge span {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.875rem;
}

.tl-hero h1 {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .tl-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .tl-hero h1 {
        font-size: 3.75rem;
    }
}

.tl-hero-desc {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .tl-hero-desc {
        font-size: 1.25rem;
    }
}

.tl-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .tl-hero-btns {
        flex-direction: row;
    }
}

.tl-btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-purple);
    color: white;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tl-btn-primary:hover {
    background-color: var(--dark-purple);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tl-btn-secondary {
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary-purple);
    border-radius: 0.5rem;
    border: 2px solid var(--primary-purple);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tl-btn-secondary:hover {
    background-color: #f9fafb;
}

.tl-hero-arrow {
    margin-top: 4rem;
    animation: bounce 1s infinite;
}

.tl-hero-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-purple);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ========================================
   Section Common Styles
======================================== */
.tl-section {
    padding: 5rem 1rem;
}

@media (min-width: 640px) {
    .tl-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tl-section {
        padding: 5rem 2rem;
    }
}

.tl-section-white {
    background-color: white;
}

.tl-section-cream {
    background-color: var(--cream);
}

.tl-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tl-section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(91, 58, 143, 0.1);
    border-radius: 9999px;
}

.tl-section-badge-white {
    background-color: white;
    border: 1px solid rgba(91, 58, 143, 0.2);
}

.tl-section-badge span {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.875rem;
}

.tl-section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tl-section-title {
        font-size: 2.25rem;
    }
}

.tl-section-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* ========================================
   About Section
======================================== */
.tl-about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tl-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tl-about-text h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .tl-about-text h2 {
        font-size: 2.25rem;
    }
}

.tl-about-text p {
    color: var(--gray-700);
    line-height: 1.75;
}

.tl-about-card-wrapper {
    position: relative;
}

.tl-about-card-bg {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(91, 58, 143, 0.2), rgba(76, 175, 80, 0.2));
    border-radius: 1rem;
    filter: blur(24px);
}

.tl-about-card {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.tl-about-card > p {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.tl-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.tl-about-stat {
    text-align: center;
}

.tl-about-stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.tl-about-stat-value.purple {
    color: var(--primary-purple);
}

.tl-about-stat-value.green {
    color: var(--green);
}

.tl-about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   Services Section
======================================== */
.tl-services-category {
    margin-bottom: 4rem;
}

.tl-services-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tl-services-category-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-purple);
}

.tl-services-category-header.green svg {
    color: var(--green);
}

.tl-services-category-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.tl-services-category > p {
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.tl-services-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.tl-services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .tl-services-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-service-card {
    background: linear-gradient(to bottom right, white, var(--cream));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    transition: all 0.3s;
}

.tl-service-card:hover {
    border-color: rgba(91, 58, 143, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tl-service-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(91, 58, 143, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s;
}

.tl-service-card:hover .tl-service-card-icon {
    background-color: var(--primary-purple);
}

.tl-service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-purple);
    transition: color 0.3s;
}

.tl-service-card:hover .tl-service-card-icon svg {
    color: white;
}

.tl-service-card h5 {
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.tl-service-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Additional Training Areas Box */
.tl-additional-areas {
    background-color: var(--cream);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-additional-areas h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.tl-additional-areas-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tl-additional-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tl-area-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-area-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--green);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.tl-area-item p {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Community Services */
.tl-community-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s;
}

.tl-community-card:hover {
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tl-community-card-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tl-community-card p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Additional Offerings */
.tl-additional-offerings {
    margin-top: 4rem;
    background: linear-gradient(to bottom right, var(--primary-purple), var(--dark-purple));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

@media (min-width: 640px) {
    .tl-additional-offerings {
        padding: 3rem;
    }
}

.tl-additional-offerings h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.tl-additional-offerings-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-additional-offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-additional-offerings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-offering-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tl-offering-item p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ========================================
   Training Steps Section
======================================== */
.tl-steps-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .tl-steps-container {
        gap: 3rem;
    }
}

.tl-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tl-step {
        flex-direction: row;
    }

    .tl-step.reverse {
        flex-direction: row-reverse;
    }
}

.tl-step-icon-wrapper {
    flex-shrink: 0;
}

.tl-step-icon {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tl-step-icon svg {
    width: 4rem;
    height: 4rem;
    color: white;
}

.tl-step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cream);
}

[dir="rtl"] .tl-step-number {
    right: auto;
    left: -1rem;
}

.tl-step-number span {
    font-size: 1.125rem;
    font-weight: bold;
}

.tl-step-content {
    flex: 1;
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-step-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.tl-step-content p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* ========================================
   Personal Training Section
======================================== */
.tl-personal-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .tl-personal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-personal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-personal-card {
    background: linear-gradient(to bottom right, var(--cream), white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    transition: all 0.3s;
}

.tl-personal-card:hover {
    border-color: var(--green);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tl-personal-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--primary-purple), var(--light-purple));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.tl-personal-card:hover .tl-personal-card-icon {
    transform: scale(1.1);
}

.tl-personal-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.tl-personal-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.tl-personal-card p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* Family Services */
.tl-family-services {
    background: linear-gradient(to bottom right, var(--cream), white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .tl-family-services {
        padding: 3rem;
    }
}

.tl-family-services h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.tl-family-services > p {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.tl-family-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tl-family-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-family-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tl-family-item {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(91, 58, 143, 0.1);
}

.tl-family-item-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.tl-family-item span {
    font-weight: bold;
    color: var(--primary-purple);
}

/* Benefits */
.tl-benefits-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.tl-benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s;
}

.tl-benefit-card:hover {
    border-color: var(--green);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tl-benefit-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tl-benefit-icon-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--green);
    border-radius: 50%;
}

.tl-benefit-card p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* ========================================
   Training Materials Section
======================================== */
.tl-materials-steps {
    margin-bottom: 4rem;
}

.tl-materials-steps h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.tl-materials-steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-materials-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-materials-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tl-materials-step {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    position: relative;
    transition: all 0.3s;
}

.tl-materials-step:hover {
    border-color: rgba(91, 58, 143, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tl-materials-step-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .tl-materials-step-number {
    left: auto;
    right: 1.5rem;
}

.tl-materials-step-number span {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.tl-materials-step-content {
    margin-top: 1.5rem;
}

.tl-materials-step-content h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.tl-materials-step-content p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Features */
.tl-features-box {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .tl-features-box {
        padding: 3rem;
    }
}

.tl-features-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tl-features-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--green);
}

.tl-features-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.tl-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--cream), white);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.tl-feature-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tl-feature-item h4 {
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.tl-feature-item p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ========================================
   Methodology Section
======================================== */
.tl-methodology-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tl-methodology-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(to bottom right, var(--cream), white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .tl-methodology-step {
        flex-direction: row;
    }
}

.tl-methodology-step:hover {
    border-color: rgba(91, 58, 143, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tl-methodology-step-icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tl-methodology-step-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.tl-methodology-step-content {
    flex: 1;
}

.tl-methodology-step-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tl-methodology-step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.tl-methodology-step-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.tl-methodology-step-content > p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* Additional Services */
.tl-additional-services {
    background: linear-gradient(to bottom right, var(--primary-purple), var(--dark-purple));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

@media (min-width: 640px) {
    .tl-additional-services {
        padding: 3rem;
    }
}

.tl-additional-services h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.tl-additional-services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .tl-additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-additional-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-additional-service {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
}

.tl-additional-service:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.tl-additional-service h4 {
    font-weight: bold;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.tl-additional-service p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ========================================
   Values Section
======================================== */
.tl-values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .tl-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tl-value-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
    transition: all 0.3s;
}

.tl-value-card:hover {
    border-color: rgba(91, 58, 143, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tl-value-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tl-value-card:hover .tl-value-card-icon {
    transform: scale(1.1);
}

.tl-value-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.tl-value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.tl-value-card p {
    color: var(--gray-700);
    line-height: 1.75;
}

/* ========================================
   Vision & Mission Section
======================================== */
.tl-vision-mission-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .tl-vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tl-vision-card,
.tl-mission-card {
    position: relative;
}

.tl-vision-card-bg,
.tl-mission-card-bg {
    position: absolute;
    inset: -4px;
    border-radius: 1rem;
    opacity: 0.2;
    filter: blur(24px);
    transition: opacity 0.3s;
}

.tl-vision-card-bg {
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
}

.tl-mission-card-bg {
    background: linear-gradient(to right, var(--green), var(--light-green));
}

.tl-vision-card:hover .tl-vision-card-bg,
.tl-mission-card:hover .tl-mission-card-bg {
    opacity: 0.3;
}

.tl-vision-card-inner {
    position: relative;
    background: linear-gradient(to bottom right, var(--primary-purple), var(--dark-purple));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    height: 100%;
}

@media (min-width: 640px) {
    .tl-vision-card-inner {
        padding: 3rem;
    }
}

.tl-mission-card-inner {
    position: relative;
    background: linear-gradient(to bottom right, var(--green), var(--dark-green));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    height: 100%;
}

@media (min-width: 640px) {
    .tl-mission-card-inner {
        padding: 3rem;
    }
}

.tl-vision-icon,
.tl-mission-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tl-vision-icon svg,
.tl-mission-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.tl-vision-card-inner h3,
.tl-mission-card-inner h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.tl-vision-card-inner > p,
.tl-mission-card-inner > p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

.tl-vision-progress {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tl-vision-progress-bar {
    flex: 1;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

.tl-vision-progress-fill {
    height: 100%;
    width: 75%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
}

.tl-vision-progress span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.tl-mission-icons {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tl-mission-icons-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tl-mission-icons-item-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.tl-mission-icons-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* CTA */
.tl-cta {
    margin-top: 4rem;
    text-align: center;
}

.tl-cta-inner {
    background: linear-gradient(to bottom right, var(--cream), white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(91, 58, 143, 0.1);
}

@media (min-width: 640px) {
    .tl-cta-inner {
        padding: 3rem;
    }
}

.tl-cta h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tl-cta h3 {
        font-size: 1.875rem;
    }
}

.tl-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.tl-cta-btn {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
    color: white;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tl-cta-btn:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   Footer
======================================== */
.tl-footer {
    background: linear-gradient(to bottom right, var(--primary-purple), var(--dark-purple));
    color: white;
}

.tl-footer-content {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .tl-footer-content {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tl-footer-content {
        padding: 4rem 2rem;
    }
}

.tl-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .tl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tl-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tl-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tl-footer-logo {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-footer-logo span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.tl-footer-brand-text h3 {
    font-weight: bold;
    font-size: 1.125rem;
}

.tl-footer-brand-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.tl-footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.75;
}

.tl-footer-section h4 {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tl-footer-links {
    list-style: none;
}

.tl-footer-links li {
    margin-bottom: 0.75rem;
}

.tl-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.tl-footer-links a:hover {
    color: white;
}

.tl-footer-link-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--green);
    border-radius: 50%;
}

.tl-footer-contact {
    list-style: none;
}

.tl-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tl-footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tl-footer-contact p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.tl-footer-social h5 {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.tl-footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.tl-footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s;
    text-decoration: none;
}

.tl-footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.tl-footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.tl-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tl-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tl-footer-bottom-inner {
        flex-direction: row;
    }
}

.tl-footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.tl-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.tl-footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.tl-footer-bottom-links a:hover {
    color: white;
}
