/* About Page Header Visibility - Initial state only */

@font-face {
    font-family: 'NeoSansArabic';
    src: url('fonts/Arabic/alfont_com_NeoSansW23-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeoSansArabic';
    src: url('fonts/Arabic/alfont_com_NeoSansW23-Med.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeoSansArabic';
    src: url('fonts/Arabic/alfont_com_NeoSansW23-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeoSansArabic';
    src: url('fonts/Arabic/alfont_com_NeoSansW23-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body:has(.about-hero-section) .header-white {
    opacity: 1;
    visibility: visible;
}

body:has(.about-hero-section) .header-black {
    opacity: 0;
    visibility: hidden;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.1);
    will-change: transform;
}

.about-hero-blend {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100%;
    mix-blend-mode: color-dodge;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Backup blend mode if color-dodge doesn't work well */
@supports not (mix-blend-mode: color-dodge) {
    .about-hero-blend {
        mix-blend-mode: normal;
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Ensure text is visible - fallback if animations don't load */
.about-hero-title,
.reveal-word {
    visibility: visible;
    opacity: 1;
}

.about-hero-title {
    color: #f5f5f5;
    font-size: clamp(64px, 12vw, 180px);
    font-family: 'Playfair Display', serif;
    line-height: 0.9;
    letter-spacing: -4px;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

.about-hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 3s ease-in-out infinite 2s;
    pointer-events: none;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-word-wrapper {
    display: inline-block;
    overflow: hidden;
    padding: 12px 8px;
    position: relative;
}

.hero-word-wrapper:first-child {
    margin-right: 20px;
}

.reveal-word {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
    position: relative;
    animation: revealText 0.9s ease forwards 0.3s;
    color: #f5f5f5;
}

@keyframes revealText {
    to {
        transform: translateY(0);
    }
}

/* Fallback: Show text immediately if JS fails */
.about-hero-section.loaded .reveal-word,
.reveal-word.visible {
    transform: translateY(0) !important;
}

.reveal-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 1.5s;
}

.reveal-word.animate::after {
    transform: scaleX(1);
}

/* CEO Section */
.ceo-section {
    padding: 120px 0;
    background: var(--bg-color);
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Ensure content is visible - fallback if animations don't load */
.ceo-section *,
.vision-section * {
    visibility: visible;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.3s ease;
    animation: fadeInLeft 1s ease forwards;
    background: var(--bg-color);
}

.ceo-image-container:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: translateX(0) translateY(-5px);
}

.ceo-image-container.animate {
    transform: translateX(0);
    opacity: 1;
}

@keyframes fadeInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ceo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ceo-image-container:hover .ceo-image {
    transform: scale(1.08);
}

.ceo-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ceo-image-container:hover .ceo-image-overlay {
    opacity: 1;
}

.ceo-info {
    margin-top: 40px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
    animation: fadeInUp 1s ease 0.3s forwards;
    padding: 0 20px;
}

.ceo-image-wrapper.animate .ceo-info {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ceo-name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.ceo-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.ceo-title {
    font-size: clamp(14px, 1.8vw, 20px);
    color: #888;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}

.ceo-text-content {
    position: relative;
    padding-left: 40px;
}

.content-text {
    transform: translateX(50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    animation: fadeInRight 1s ease 0.5s forwards;
    position: relative;
}

.content-text.animate {
    transform: translateX(0);
    opacity: 1;
}

@keyframes fadeInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.content-text::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.about-text-paragraph {
    font-size: 19px;
    line-height: 2;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.3px;
    text-align: justify;
}

.about-text-paragraph strong {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.about-text-paragraph strong::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.3;
}

/* Vision Section Re-design */
.vision-section {
    padding: 140px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    color: var(--primary-color);
}

/* Background Shapes */
.vision-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.vision-shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
}

.vision-shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
}

.vision-shape-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent 70%);
}

/* Grid Layout */
.vision-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Header Styling */
.vision-header-col {
    position: relative;
}

.vision-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.vision-main-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.title-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
}

.title-line.highlight {
    font-weight: 400;
    font-style: italic;
    color: var(--primary-color);
    /* Removed text-stroke to make it solid and elegant */
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.vision-line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Fix CEO Name wrapping */
.ceo-name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Cards Layout */
.vision-cards-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.vision-card:hover .card-text {
    color: #333;
}

.card-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Specific Card Styling */
.is-goals {
    transform: translateY(40px);
}

.vision-card.is-goals:hover {
    transform: translateY(30px);
}

/* Responsive */
@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vision-cards-col {
        gap: 20px;
    }

    .is-goals {
        transform: translateY(0);
    }

    .vision-card.is-goals:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .vision-cards-col {
        grid-template-columns: 1fr;
    }

    .vision-main-title {
        font-size: 42px;
    }

    .vision-card {
        padding: 30px;
    }
}


@media (max-width: 480px) {
    .ceo-content {
        padding: 0 15px;
        gap: 40px;
    }

    .ceo-section {
        padding: 60px 0;
    }

    .ceo-image-container {
        border-radius: 12px;
    }

    .ceo-info {
        margin-top: 25px;
    }

    .vision-section {
        padding: 80px 0;
    }

    .vision-content {
        padding: 0 15px;
    }

    .vision-header {
        margin-bottom: 40px;
    }

    .vision-title {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: 1px;
    }

    .vision-title-line {
        width: 60px;
        margin-top: 15px;
    }

    .vision-text {
        font-size: clamp(16px, 4vw, 20px);
        line-height: 1.8;
    }

    .about-text-paragraph {
        font-size: clamp(15px, 4vw, 18px);
        line-height: 1.7;
    }

    .ceo-text-content {
        padding: 0 10px;
    }
}

/* RTL Support */
html[dir="rtl"] .ceo-text-content {
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
}

html[dir="rtl"] .content-text::before {
    left: auto;
    right: -40px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
}

html[dir="rtl"] .about-text-paragraph strong::after {
    right: 0;
    left: auto;
}

html[dir="rtl"] .vision-header-col {
    text-align: right;
}

html[dir="rtl"] .vision-grid {
    direction: rtl;
}

html[dir="rtl"] .vision-label {
    letter-spacing: 0;
    /* Arabic letters usually don't need wide spacing */
}

html[dir="rtl"] .vision-card {
    text-align: right;
}

html[dir="rtl"] .vision-card::before {
    left: auto;
    right: 0;
    transform-origin: right;
}

/* Arabic Font Overrides */
html[lang="ar"] body,
html[lang="ar"] .about-hero-title,
html[lang="ar"] .reveal-word,
html[lang="ar"] .ceo-name,
html[lang="ar"] .ceo-title,
html[lang="ar"] .about-text-paragraph,
html[lang="ar"] .vision-label,
html[lang="ar"] .title-line,
html[lang="ar"] .card-title,
html[lang="ar"] .card-text,
html[lang="ar"] .nav-link,
html[lang="ar"] .cta-button,
html[lang="ar"] .footer h4,
html[lang="ar"] .footer a,
html[lang="ar"] .footer p {
    font-family: 'NeoSansArabic', 'Inter', sans-serif !important;
}

html[lang="ar"] .title-line.highlight {
    font-style: normal;
}

/* Preserve original font size for Arabic */
html[lang="ar"] .about-text-paragraph {
    font-size: clamp(18px, 2vw, 24px) !important;
}

.vision-card.is-goals {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .vision-card.is-goals {
        grid-column: span 1;
    }
}



/* Modern Creative Vision Section */
.vision-container-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    position: relative;
    padding-bottom: 80px;
}

.vision-header-centered {
    text-align: center;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vision-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vision-main-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.title-line {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    color: var(--primary-color);
}

.title-line.highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-color), #b89643);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 10px;
    /* Prevent italic cut-off */
}

.vision-line-center {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin-top: 30px;
}

.vision-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.vision-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), #ead282);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.vision-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 28px;
    margin-bottom: 35px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.5s ease;
}

.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Objectives List Styling */
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

html[dir='rtl'] .objectives-list {
    text-align: right;
}

.objectives-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
    color: #666;
    transition: transform 0.3s ease;
}

.objectives-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

html[dir='rtl'] .objectives-list li {
    padding-left: 0;
    padding-right: 30px;
}

html[dir='rtl'] .objectives-list li:hover {
    transform: translateX(-5px);
}

.objectives-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    opacity: 0.7;
}

html[dir='rtl'] .objectives-list li::before {
    left: auto;
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .vision-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vision-card.is-objectives {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .vision-cards-grid-3 {
        grid-template-columns: 1fr;
    }

    .vision-card.is-objectives {
        grid-column: auto;
    }

    .vision-card {
        padding: 40px 30px;
    }
}

/* Departments Section Styles */
.departments-section {
    margin-top: 80px;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.feature-tab {
    background: none;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    font-style: italic;
    pointer-events: auto;
    z-index: 10;
}

.feature-tab::after {
    content: '';
    position: absolute;
    bottom: -21px;
    /* Align with border-bottom of container */
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-tab:hover {
    color: var(--primary-color);
}

.feature-tab.active {
    color: var(--primary-color);
}

.feature-tab.active::after {
    transform: scaleX(1);
}

.feature-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.content-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.feature-intro,
.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.feature-intro {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-principles {
    margin-top: 40px;
    background: rgba(212, 175, 55, 0.05);
    /* Light gold bg */
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

html[dir='rtl'] .feature-principles {
    border-left: none;
    border-right: 4px solid var(--accent-color);
    text-align: right;
}

.principles-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
}

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

.principles-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

html[dir='rtl'] .principles-list li {
    padding-left: 0;
    padding-right: 25px;
}

.principles-list li::before {
    content: '';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

html[dir='rtl'] .principles-list li::before {
    left: auto;
    right: 0;
}

.concept-coming-soon {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
}

.coming-soon-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ccc;
    font-style: italic;
    letter-spacing: 4px;
}

/* Animations active class for tab switching */
.feature-content.animate-in {
    animation: fadeSlideUp 0.5s forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .feature-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-tab {
        font-size: 20px;
        padding: 5px 10px;
        width: 100%;
        text-align: center;
    }

    .feature-tab::after {
        bottom: 0;
    }

    .feature-principles {
        padding: 25px;
    }
}