﻿.hero {
    position: relative;
    background: linear-gradient(160deg, var(--teal-50) 0%, #e0f7ff 40%, var(--teal-50) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--teal-400);
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--cyan-500);
    bottom: 50px;
    left: -80px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--green-600);
    top: 40%;
    left: 40%;
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(20px,-20px) scale(1.05);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid var(--teal-100);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgb(var(--teal-500-rgb), 0.4)
    }

    50% {
        box-shadow: 0 0 0 6px rgb(var(--teal-500-rgb), 0)
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-accent {
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.search-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: rgba(255,255,255,0.9);
}

    .search-input:focus {
        border-color: var(--teal-500);
    }

.search-btn {
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    color: white;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-colored);
    }

.search-result {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--teal-700);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--teal-50);
    border-radius: 8px;
    border-left: 3px solid var(--teal-500);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.2s;
}

    .btn-video:hover {
        color: var(--teal-600);
    }

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.btn-video:hover .play-icon {
    background: var(--teal-600);
    color: white;
    transform: scale(1.1);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
    z-index: 5;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-card-main {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-card-float {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

.hcard-icon {
    display: flex;
    color: var(--teal-600);
}

.hcard-text {
    display: flex;
    flex-direction: column;
}

    .hcard-text strong {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--dark);
    }

    .hcard-text span {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

@keyframes floatCard {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ill-circle {
    position: absolute;
    border-radius: 50%;
    width: 332px;
    height: 332px;
    background: linear-gradient(135deg, rgb(var(--teal-600-rgb), 0.06), rgb(var(--green-600-rgb), 0.08))
}

.ill-tree {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgb(var(--teal-600-rgb), 0.3));
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

    .hero-wave svg {
        width: 100%;
        height: auto;
        display: block;
    }

.stats-section {
    background: var(--teal-50);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgb(var(--teal-600-rgb) / 0.1);
    transition: var(--transition);
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-colored);
    }

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-section {
    padding: 6rem 0;
    background: white;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-stack {
    position: relative;
    height: 420px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

    .about-img:hover {
        transform: scale(1.02);
    }

.about-img-main {
    width: 75%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    width: 55%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.about-img-content {
    text-align: center;
}

    .about-img-content svg {
        margin: 0 auto;
    }

    .about-img-content p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
        opacity: 0.9;
    }

.about-badge-floating {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    background: var(--teal-600);
    color: white;
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    text-align: center;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

    .about-badge-floating span {
        display: block;
        font-size: 1.6rem;
        font-weight: 900;
        line-height: 1;
    }

    .about-badge-floating small {
        font-size: 0.7rem;
        opacity: 0.9;
    }

.about-desc {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.about-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .about-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 500;
    }

.feat-icon {
    width: 24px;
    height: 24px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: 700;
}

.services-section {
    padding: 6rem 0;
    background: var(--surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal-600), var(--cyan-600));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-card-featured {
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    color: white;
    border-color: transparent;
}

    .service-card-featured::before {
        display: none !important;
    }

    .service-card-featured h3, .service-card-featured p {
        color: white !important;
    }

    .service-card-featured .service-link {
        color: rgba(255,255,255,0.9) !important;
    }

.service-card-cta {
    background: var(--dark);
    color: white;
    border-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .service-card-cta h3, .service-card-cta p {
        color: rgba(255,255,255,0.9);
    }

.service-icon-wrap {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal-600);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .service-link:hover {
        gap: 0.75rem;
    }

.featured-section {
    padding: 6rem 0;
    background: white;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
}

.fstat {
    display: flex;
    flex-direction: column;
}

    .fstat strong {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 900;
        color: var(--teal-600);
    }

    .fstat span {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-family: var(--font-heading);
    }

.feat-img-wrap {
    position: relative;
}

.feat-img-bg {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feat-badge {
    position: absolute;
    bottom: -1rem;
    right: 2rem;
    background: var(--teal-600);
    color: white;
    border-radius: var(--radius);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: var(--shadow-colored);
    border: 3px solid white;
}

    .feat-badge span {
        display: block;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .feat-badge small {
        font-size: 0.75rem;
        opacity: 0.85;
    }

.news-section {
    padding: 6rem 0;
    background: var(--surface);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.news-img {
    height: 180px;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    position: relative;
}

.news-cat {
    background: rgba(255,255,255,0.2);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}

.news-body {
    padding: 1.5rem;
}

.news-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--teal-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--teal-600);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

    .news-read-more:hover {
        gap: 0.75rem;
    }

.events-section {
    padding: 6rem 0;
    background: white;
}

.events-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .event-item:hover {
        background: var(--teal-50);
        border-color: var(--teal-500);
        transform: translateX(4px);
    }

.event-date-box {
    background: var(--teal-600);
    color: white;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.event-day {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.event-month {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

    .event-info h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--dark);
        margin-bottom: 0.25rem;
    }

.event-loc {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.event-arrow {
    font-size: 1.1rem;
    color: var(--teal-600);
    font-weight: 700;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.event-item:hover .event-arrow {
    transform: translateX(4px);
}

.gallery-section {
    padding: 6rem 0;
    background: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    background-position: center !important;
    background-size: cover !important;
    height: 252px;
    position: relative;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    padding: 0.6rem 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: white;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .gallery-modal.active {
        opacity: 1;
        pointer-events: all;
    }

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.gallery-modal-media {
    position: relative;
    width: 100%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(0, 0, 0, 0.3);*/
    border-radius: 12px;
    overflow: hidden;
}

    .gallery-modal-media img,
    .gallery-modal-media video {
        max-width: 100%;
        max-height: 75vh;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
        display: none;
    }

        .gallery-modal-media img.visible,
        .gallery-modal-media video.visible {
            display: block;
        }

.gallery-modal-caption {
    color: #fff;
    font-size: 1.1rem;
    padding: 16px 24px;
    text-align: center;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    min-height: 24px;
    width: 100%;
    max-width: 90%;
}

.gallery-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

    .gallery-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

    .gallery-modal-nav:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.gallery-modal-prev {
    left: 16px;
}

.gallery-modal-next {
    right: 16px;
}

.gallery-modal-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

.gallery-modal-loader.hidden {
    display: none;
}

@media (max-width: 640px) {
    .gallery-modal-content {
        padding: 12px;
    }

    .gallery-modal-media {
        max-height: 60vh;
    }

        .gallery-modal-media img,
        .gallery-modal-media video {
            max-height: 60vh;
        }

    .gallery-modal-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-modal-prev {
        left: 4px;
    }

    .gallery-modal-next {
        right: 4px;
    }

    .gallery-modal-close {
        width: 36px;
        height: 36px;
        top: 6px;
        right: 6px;
    }

    .gallery-modal-caption {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(160deg, var(--teal-900) 0%, var(--dark-2) 100%);
}

    .testimonials-section .section-tag {
        background: rgba(255,255,255,0.1);
        color: var(--teal-400);
    }

    .testimonials-section .section-title {
        color: white;
    }

    .testimonials-section .accent {
        color: var(--teal-400);
    }

.testi-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.testi-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

    .testi-card:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-4px);
    }

.testi-featured {
    background: rgb(var(--teal-600-rgb), 0.2);
    border-color: rgb(var(--teal-500-rgb), 0.3);
}

.testi-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--teal-400);
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.testi-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    overflow: hidden;
}

    .testi-avatar img {
        height: 44px;
        object-fit: cover;
    }

.testi-author div {
    display: flex;
    flex-direction: column;
}


.testi-author strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.testi-author span {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

.students-section {
    padding: 6rem 0;
    background: white;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.student-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .student-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.student-featured {
    border-color: var(--teal-500);
    background: linear-gradient(160deg, var(--teal-50), white);
}

.student-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--teal-600), var(--cyan-600));
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem;
    text-align: center;
}

.student-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 8px auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    overflow: hidden;
}

    .student-avatar img {
        height: 72px;
        object-fit: cover;
    }

.student-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.student-award {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-700);
    background: var(--teal-100);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin: 0 auto 0.5rem;
    width: fit-content;
}

.student-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

/* Staff Section - Mobile */
.staff-section {
    background: var(--teal-50);
    padding: 3rem 0 4rem;
}

.staff-showcase-wrap {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    right: 58px;
}

.staff-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 24px;
    justify-content: center;
}

.staff-photo-main {
    position: relative;
    width: 30%;
    overflow: hidden;
    border-radius: 28px;
    background: var(--dark);
    box-shadow: 0 30px 70px rgba(10, 22, 40, 0.18);
}

    .staff-photo-main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.78) );
        z-index: 1;
        pointer-events: none;
    }

    .staff-photo-main img {
        display: block;
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: contain;
        transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
    }

    .staff-photo-main::before {
        content: "";
        position: absolute;
        inset: 14px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 20px;
        z-index: 2;
        pointer-events: none;
    }

    .staff-photo-main.is-changing img {
        opacity: 0;
        transform: scale(1.05);
    }

.staff-photo-tag {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: white;
    width: calc(100% - 56px);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: .8rem;
    border: 1px solid rgb(255 255 255 / .2);
}

    .staff-photo-tag strong {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 800;
    }

    .staff-photo-tag span {
        font-size: 0.8rem;
        opacity: 0.75;
    }

.staff-quote-card {
    /* position: absolute; */
    right: 0;
    width: 400px;
    max-height: 340px;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 70px rgba(10, 22, 40, 0.15);
    z-index: 10;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 72px; */
}

    .staff-quote-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 2rem;
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, var(--teal-600), var(--cyan-600));
        border-radius: 0 0 10px 10px;
    }

.staff-quote-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.staff-quote-count {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--surface);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
}

.staff-quote-mark {
    color: var(--teal-600);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 0.5;
    opacity: 0.8;
}

.staff-quote-text {
    flex: 1;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2;
    margin: 0;
    position: relative;
}

.staff-quote-footer {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.staff-quote-person {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .staff-quote-person strong {
        color: var(--dark);
        font-family: var(--font-heading);
        font-size: 0.95rem;
    }

    .staff-quote-person span {
        color: var(--text-muted);
        font-size: 0.75rem;
    }

.staff-quote-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-quote-bar {
    width: 70px;
    height: 4px;
    overflow: hidden;
    background: var(--border);
    border-radius: 10px;
}

    .staff-quote-bar span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--teal-600), var(--cyan-600));
        border-radius: inherit;
        transition: width 0.5s ease;
    }

.staff-quote-dots {
    display: flex;
    gap: 4px;
}

.staff-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
    transition: 0.3s ease;
}

    .staff-dot.active {
        width: 18px;
        border-radius: 10px;
        background: var(--teal-600);
    }

.staff-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 20;
}

.staff-thumb {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 3px;
    border: none;
    background: white;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking */
}

    .staff-thumb img {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        border-radius: 13px;
    }

    .staff-thumb:hover {
        transform: translateX(5px);
    }

    .staff-thumb.active {
        transform: translateX(8px) scale(1.12);
        box-shadow: 0 0 0 3px var(--teal-600), 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.staff-thumb-dot {
    position: absolute;
    right: -5px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    background: var(--teal-600);
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s ease;
}

.staff-thumb.active .staff-thumb-dot {
    opacity: 1;
}

/* ===== MOBILE FIXES ===== */

/* Tablets & smaller laptops */
@media (max-width: 1024px) {
    .staff-section {
        padding: 2.5rem 0 3rem;
    }

    .staff-showcase-wrap {
        max-width: 100%;
        overflow-x: hidden;
        right: 0;
    }

    .staff-visual {
        min-height: 450px;
    }

    .staff-photo-main {
        width: 70%;
        border-radius: 24px;
    }

    .staff-quote-card {
        width: 380px;
        min-height: 300px;
        padding: 2rem;
        margin-bottom: 50px;
        right: -10px;
    }

    .staff-thumbs {
        left: -70px;
    }

    .staff-thumb {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

        .staff-thumb img {
            border-radius: 11px;
        }
}

/* Mobile landscape & small tablets */
@media (max-width: 900px) {
    .staff-section {
        padding: 2rem 0 2.5rem;
    }

    .staff-visual {
        /* display: block; */
        min-height: auto;
    }

    .staff-photo-main {
        width: 100%;
        height: 420px;
        border-radius: 20px 20px 0 0;
        margin: 0 auto;
    }

        .staff-photo-main::before {
            inset: 10px;
            border-radius: 16px 16px 0 0;
        }

        .staff-photo-main::after {
            border-radius: 20px 20px 0 0;
        }


    .staff-photo-tag strong {
        font-size: 1.1rem;
    }

    .staff-quote-card {
        position: relative;
        right: auto;
        width: calc(100% - 1.5rem);
        margin: -80px auto 0;
        min-height: 260px;
        padding: 1.75rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(10, 22, 40, 0.15);
    }

        .staff-quote-card::before {
            right: 1.5rem;
            width: 50px;
        }

    .staff-quote-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .staff-quote-mark {
        font-size: 3rem;
    }

    .staff-thumbs {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 1.4rem;
        margin-top: 1.5rem;
        padding: 0.5rem 0.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

        .staff-thumbs::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Edge */
        }

    .staff-thumb {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

        .staff-thumb img {
            border-radius: 11px;
        }

        .staff-thumb:hover,
        .staff-thumb.active {
            transform: scale(1.08);
        }

        .staff-thumb.active {
            box-shadow: 0 0 0 3px var(--teal-600), 0 8px 20px rgba(0, 0, 0, 0.15);
        }

    .staff-thumb-dot {
        width: 7px;
        height: 7px;
        right: -4px;
    }
}

/* Mobile phones */
@media (max-width: 550px) {
    .staff-section {
        padding: 1.5rem 0 2rem;
    }

    .staff-visual {
    }

    .staff-photo-main {
        height: 340px;
        border-radius: 16px 16px 0 0;
    }

        .staff-photo-main::before {
            inset: 8px;
            border-radius: 12px 12px 0 0;
        }

        .staff-photo-main::after {
            border-radius: 16px 16px 0 0;
        }

    .staff-photo-tag strong {
        font-size: 1rem;
    }

    .staff-photo-tag span {
        font-size: 0.7rem;
    }

    .staff-quote-card {
        width: calc(100% - 1rem);
        margin: -60px auto 0;
        min-height: 220px;
        padding: 1.25rem 1.25rem 1.5rem;
        border-radius: 16px;
    }

        .staff-quote-card::before {
            right: 1.25rem;
            width: 40px;
            height: 3px;
        }

    .staff-quote-top {
        margin-bottom: 1rem;
    }

    .staff-quote-count {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .staff-quote-mark {
        font-size: 2.5rem;
    }

    .staff-quote-text {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-right: 0.25rem;
    }

    .staff-quote-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding-top: 1rem;
    }

    .staff-quote-person {
        gap: 0.1rem;
    }

        .staff-quote-person strong {
            font-size: 0.85rem;
        }

        .staff-quote-person span {
            font-size: 0.7rem;
        }

    .staff-quote-progress {
        width: 100%;
        justify-content: space-between;
    }

    .staff-quote-bar {
        width: 50px;
        height: 3px;
    }

    .staff-dot {
        width: 4px;
        height: 4px;
    }

        .staff-dot.active {
            width: 14px;
        }

    .staff-thumbs {
        margin-bottom: 1rem;
        padding: 0.25rem;
    }

    .staff-thumb {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        padding: 2px;
    }

        .staff-thumb img {
            border-radius: 10px;
        }

    .staff-thumb-dot {
        width: 6px;
        height: 6px;
        right: -3px;
        border-width: 1.5px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .staff-photo-main {
        height: 280px;
        border-radius: 14px;
    }

        .staff-photo-main::before {
            inset: 6px;
            border-radius: 10px;
        }

        .staff-photo-main::after {
            border-radius: 14px;
        }

    .staff-photo-tag {
        right: 10px;
        bottom: 10px;
    }

        .staff-photo-tag strong {
            font-size: 0.85rem;
        }

        .staff-photo-tag span {
            font-size: 0.6rem;
        }

    .staff-quote-card {
        margin: -45px auto 0;
        padding: 1rem 1rem 1.25rem;
        min-height: 190px;
    }

    .staff-quote-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .staff-quote-mark {
        font-size: 2rem;
    }

    .staff-thumb {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

        .staff-thumb img {
            border-radius: 8px;
        }
}

/* RTL Support */
[dir="rtl"] .staff-photo-main {
    /* margin-left: auto; */
    /* margin-right: 0; */
}

[dir="rtl"] .staff-quote-card {
    right: auto;
    left: 0;
}

    [dir="rtl"] .staff-quote-card::before {
        right: auto;
        left: 2rem;
    }

[dir="rtl"] .staff-quote-mark {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .staff-thumbs {
}

[dir="rtl"] .staff-thumb:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .staff-thumb.active {
    transform: translateX(-8px) scale(1.12);
}

[dir="rtl"] .staff-thumb-dot {
    right: auto;
    left: -5px;
}

/*[dir="rtl"] .staff-photo-tag {
    right: auto;
    left: 28px;
}*/

@media (max-width: 900px) {
    [dir="rtl"] .staff-thumbs {
        right: auto;
        left: auto;
    }

    [dir="rtl"] .staff-quote-card {
        border-radius: 0 0 16px 16px;
        margin: 0;
        width: 100%;
        left: auto;
        right: auto;
    }
}

@media (max-width: 550px) {

    [dir="rtl"] .staff-thumb-dot {
        left: -3px;
        right: auto;
    }
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--teal-800), var(--dark));
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

    .contact-item div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .contact-item strong {
        font-family: var(--font-heading);
        font-weight: 700;
        color: white;
        font-size: 0.9rem;
    }

    .contact-item span {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        font-family: var(--font-heading);
    }

.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

    .contact-form-wrap h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
    }

.map-section {
    padding: 6rem 0;
    background: white;
}

.map-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.map-frame-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
}

    .map-frame-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 360px;
        border: 0;
        display: block;
        filter: grayscale(15%);
    }

.map-cta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.map-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-colored);
}

    .map-cta-icon svg {
        width: 26px;
        height: 26px;
    }

.map-cta-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.map-cta-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.map-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teal-600), var(--cyan-600));
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
    width: fit-content;
}

    .map-cta-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgb(var(--teal-600-rgb) / 0.4);
    }

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
        height: 280px;
    }

    .hero-card {
        display: none;
    }

    .hero-illustration {
        height: 270px;
        transform: scale(0.95);
    }

    .ill-circle {
        width: 270px;
        height: 270px;
    }

    .ill-tree svg {
        width: 270px;
        height: 270px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-stack {
        height: 280px;
    }

    .featured-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-inner {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-showcase-wrap {
        flex-direction: column !important;
    }

    .staff-visual {
        flex-direction: column-reverse;
        gap: 0;
        order: -1;
        min-height: 320px;
    }

    .map-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .students-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-visual {
        height: auto;
    }

    .hero-illustration {
        height: 220px;
        transform: scale(0.85);
        margin: -1.5rem 0;
    }

    .ill-circle {
        width: 170px;
        height: 170px;
    }

    .ill-tree svg {
        width: 170px;
        height: 170px;
    }

    .search-btn {
        width: 100%;
    }
}

[dir="rtl"] .hero-inner {
    direction: rtl;
}

[dir="rtl"] .hero-card-main {
    right: -10%;
    left: auto;
}

[dir="rtl"] .hero-card-float {
    left: -5%;
    right: auto;
}

[dir="rtl"] .section-header .section-sub {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .section-header .section-title {
    text-align: center;
}

[dir="rtl"] .section-header .section-sub {
    text-align: center;
    margin: 0 auto;
}

[dir="rtl"] .about-inner {
    direction: rtl;
}

[dir="rtl"] .about-img-main {
    left: auto;
    right: 0;
}

[dir="rtl"] .about-img-secondary {
    right: auto;
    left: 0;
}

[dir="rtl"] .featured-inner {
    direction: rtl;
}

[dir="rtl"] .testi-author {
    flex-direction: row-reverse;
}

    [dir="rtl"] .testi-author div {
        text-align: right;
    }

[dir="rtl"] .contact-inner {
    direction: rtl;
}

[dir="rtl"] .events-inner {
    direction: rtl;
}

[dir="rtl"] .event-item {
    flex-direction: row-reverse;
}

    [dir="rtl"] .event-item:hover {
        transform: translateX(-4px);
    }

[dir="rtl"] .event-info {
    text-align: right;
}

[dir="rtl"] .event-item:hover .event-arrow {
    transform: translateX(-4px);
}

[dir="rtl"] .service-card::before {
    transform-origin: right;
}

[dir="rtl"] .service-card:hover::before {
    transform: scaleX(1);
}

[dir="rtl"] .news-card {
    direction: rtl;
}

[dir="rtl"] .news-body {
    text-align: right;
}

[dir="rtl"] .student-card {
    direction: rtl;
}

[dir="rtl"] .hero-search {
    direction: rtl;
}

[dir="rtl"] .search-input {
    text-align: right;
}

[dir="rtl"] .contact-form-wrap {
    direction: rtl;
}

[dir="rtl"] .stat-card {
    direction: rtl;
}

[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-video {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-item span:last-child {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .map-cta-link {
    flex-direction: row-reverse;
}

/*[dir="rtl"] .staff-quote-card {
    right: auto;
    left: 0;
}

[dir="rtl"] .staff-thumbs {
    left: auto;
    right: -92px;
}

[dir="rtl"] .staff-thumb:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .staff-thumb.active {
    transform: translateX(-8px) scale(1.12);
}
*/
