/* --- RESET & ROOT CONFIGURATIONS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #fcfdfd;
    color: #333333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

:root {
    --primary-color: #0d5257;
    --primary-dark: #072a2c;
    --secondary-color: #bd8e42;
    --text-dark: #2b3a3a;
    --text-light: #708080;
    --white: #ffffff;
}

/* --- BUTTONS & STYLES --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.btn-outline {
    border: 1px solid #b2c5c7;
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-alt {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 35px;
    font-weight: bold;
}

.btn-outline-sm {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: bold;
    background: transparent;
}

.btn-outline-full {
    display: flex;
    width: 100%;
    border: 1px solid #d1dbdb;
    color: var(--text-dark);
    justify-content: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    background: transparent;
    margin-top: 15px;
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 6px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge {
    background-color: #e6f1f2;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

/* --- TOP HEADER BAR --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-contact {
    display: flex;
    gap: 20px;
}

/* --- NAVIGATION HEADER --- */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

    .main-nav a:hover, .main-nav a.active {
        color: var(--primary-color);
        font-weight: 700;
    }

.has-submenu {
    position: relative;
}

.submenu-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .submenu-trigger .toggle-icon {
        font-size: 0.8rem;
        color: var(--text-light);
        cursor: pointer;
    }

.main-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 160px;
    border-radius: 4px;
    flex-direction: column;
}

    .main-nav .submenu li {
        width: 100%;
    }

    .main-nav .submenu a {
        padding: 8px 15px;
        display: block;
        font-size: 0.85rem;
    }

        .main-nav .submenu a:hover {
            background-color: #f4f8f8;
            color: var(--primary-color);
        }

.has-submenu:hover .submenu {
    display: flex;
}

.nav-left-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (min-width: 992px) {
    .logo {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    .nav-left-actions {
        flex: 1;
        justify-content: flex-end;
    }
    .main-nav {
        display: flex;
        justify-content: center;
    }
}

.header-cart-btn {
    position: relative;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
}

.cart-badge-count {
    position: absolute;
    top: -8px;
    left: -10px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
}

.menu-header-mobile {
    display: none;
}

/* --- HERO SLIDER --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

.hero-grid-layout {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 800;
}

    .hero-content h1 .highlight {
        color: #111111;
    }

.hero-content p {
    color: #445252;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

    .slider-arrow.arrow-prev {
        right: 30px;
    }

    .slider-arrow.arrow-next {
        left: 30px;
    }

.slider-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b0c9cb;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 5px;
    }

.block-spacer {
    height: 60px;
}

/* --- STATS COUNTERS --- */
.stats-section {
    position: relative;
    z-index: 20;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(13, 82, 87, 0.04);
    border: 1px solid #edf4f4;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.stat-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- PROJECTS CARD STYLES --- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title span {
        color: var(--secondary-color);
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

    .section-title h2 {
        font-size: 2rem;
        color: var(--primary-color);
        font-weight: 800;
        margin-bottom: 8px;
    }

    .section-title p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #edf4f4;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.project-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.project-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .project-body h3 {
        font-size: 1.2rem;
        color: var(--primary-color);
        margin-bottom: 8px;
        font-weight: 700;
    }

    .project-body p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.5;
        margin-bottom: 15px;
    }

.progress-container {
    margin-bottom: 15px;
}

.progress-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-light);
}

.progress-percentage {
    color: var(--primary-color);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #ebf2f2;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
}

.project-metrics {
    display: flex;
    justify-content: space-between;
    background: #f8fbfb;
    padding: 12px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #f0f6f6;
}

.metric-item {
    flex: 1;
}

    .metric-item span {
        display: block;
        font-size: 0.75rem;
        color: var(--text-light);
        margin-bottom: 3px;
    }

    .metric-item strong {
        font-size: 0.9rem;
        color: var(--text-dark);
    }

        .metric-item strong.remain-color {
            color: var(--secondary-color);
        }

.donation-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1dbdb;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 38px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-light);
}

.qty-input {
    border: none;
    text-align: center;
    width: 100%;
    font-weight: bold;
    outline: none;
    color: var(--text-dark);
}

.project-actions {
    display: flex;
    gap: 10px;
}

.btn-donate {
    flex: 2;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    text-decoration: none;
}

.btn-cart {
    flex: 3;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    height: 42px;
}

.center-btn-wrapper {
    text-align: center;
    margin: 45px 0;
}

/* --- NEW IMPACT SECTION --- */
.impact-section {
    background: linear-gradient(rgba(13, 82, 87, 0.92), rgba(13, 82, 87, 0.92)), url('https://images.unsplash.com/photo-1590075865003-e48277faa558?auto=format&fit=crop&q=80&w=1200') fixed center/cover;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin-top: 5px;
}

    .impact-section h2 {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.4;
        margin-bottom: 45px;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

    .impact-card:hover {
        transform: translateY(-5px);
    }

    .impact-card i {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .impact-card h3 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .impact-card p {
        font-size: 0.95rem;
        opacity: 0.9;
    }

/* --- NEW NEWS & STORY SECTION --- */
.news-story-section {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.column-title {
    border-bottom: 2px solid #edf4f4;
    padding-bottom: 12px;
    margin-bottom: 25px;
    position: relative;
}

    .column-title h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        font-weight: 800;
    }

    .column-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        right: 0;
        width: 60px;
        height: 2px;
        background-color: var(--primary-color);
    }

/* Story Box */
.story-card {
    background: var(--white);
    border: 1px solid #edf4f4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #000;
}

    .video-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .play-btn:hover {
        background-color: var(--primary-color);
        color: var(--white);
        scale: 1.05;
    }

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.story-body {
    padding: 20px;
}

    .story-body h4 {
        font-size: 1.15rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .story-body p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 20px;
    }

/* News Box */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    border: 1px solid #edf4f4;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .news-item:hover {
        border-color: #cbdadb;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .news-item img {
        width: 100px;
        height: 75px;
        object-fit: cover;
        border-radius: 6px;
    }

.news-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

    .news-info h4 {
        font-size: 0.95rem;
        color: var(--primary-color);
        font-weight: 700;
        line-height: 1.4;
    }

    .news-info p {
        font-size: 0.85rem;
        color: var(--text-light);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 2px 0;
    }

.news-date {
    font-size: 0.75rem;
    color: #a0afaf;
    font-weight: 500;
}

/* --- NEW AMBASSADOR SECTION --- */
.ambassador-section {
    margin-bottom: 60px;
}

.ambassador-box {
    background: linear-gradient(135deg, #f3f8f8 0%, #eef5f5 100%);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2ecec;
    position: relative;
    overflow: hidden;
}

.ambassador-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
}

.ambassador-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.ambassador-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ambassador-icon {
    font-size: 5.5rem;
    color: rgba(13, 82, 87, 0.04);
    position: absolute;
    left: 40px;
    bottom: -10px;
    pointer-events: none;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary-dark);
    color: #bfcccc;
    padding-top: 50px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

    .footer-social a {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #bfcccc;
        font-size: 0.9rem;
    }

        .footer-social a:hover {
            background: var(--secondary-color);
            color: var(--white);
        }

.footer-bottom {
    background-color: #051f20;
    padding: 20px 0;
    border-top: 1px solid #072e30;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal a {
    color: #bfcccc;
    margin: 0 5px;
}

    .footer-legal a:hover {
        color: var(--white);
    }

/* --- RESPONSIVE INTERFACE --- */
@media (max-width: 992px) {
    .slider-wrapper {
        height: auto;
        min-height: 400px;
    }

    .hero-slide {
        position: relative;
        display: none;
        padding: 40px 0;
    }

    .hero-slide.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-story-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 2000;
        display: block;
        transition: right 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
        overflow-y: auto;
    }

        .main-nav.open {
            right: 0;
        }

    .menu-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #f4f8f8;
        border-bottom: 1px solid #edf4f4;
        font-weight: 700;
        color: var(--primary-color);
    }

    .menu-close-btn {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: var(--text-dark);
        cursor: pointer;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

        .main-nav ul li {
            width: 100%;
            border-bottom: 1px solid #f8fbfb;
        }

            .main-nav ul li a {
                padding: 14px 20px;
                display: block;
            }

    .submenu-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 20px;
    }

        .submenu-trigger a {
            flex-grow: 1;
        }

        .submenu-trigger .toggle-icon {
            width: 35px;
            height: 35px;
            background-color: #f4f8f8;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: bold;
        }

    .main-nav .submenu {
        display: none;
        position: relative;
        box-shadow: none;
        background-color: #fafdfd;
        width: 100%;
    }

        .main-nav .submenu li a {
            padding: 12px 35px;
            font-size: 0.9rem;
        }

    .main-nav .has-submenu:hover .submenu {
        display: none;
    }

    .main-nav .has-submenu.expanded .submenu {
        display: block;
    }

    .ambassador-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .ambassador-actions {
        flex-direction: column;
        width: 100%;
    }

    .ambassador-icon {
        display: none;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .stats-grid, .projects-grid, .impact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-contact {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- LANGUAGE SWITCHER --- */
.lang-switch-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-1px);
}

/* --- LTR DIRECTION OVERRIDES (English) --- */
html[dir="ltr"] .main-nav .submenu {
    right: auto;
    left: 0;
}

html[dir="ltr"] .column-title::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .slider-arrow.arrow-prev {
    right: auto;
    left: 30px;
}

html[dir="ltr"] .slider-arrow.arrow-next {
    left: auto;
    right: 30px;
}

html[dir="ltr"] .ambassador-icon {
    left: auto;
    right: 40px;
}

html[dir="ltr"] .cart-badge-count {
    left: auto;
    right: -10px;
}

html[dir="ltr"] .video-duration {
    right: auto;
    left: 12px;
}

@media (max-width: 768px) {
    html[dir="ltr"] .main-nav {
        right: auto;
        left: -300px;
    }

    html[dir="ltr"] .main-nav.open {
        left: 0;
    }

    html[dir="ltr"] .submenu-trigger {
        padding-left: 0;
        padding-right: 20px;
    }
}

/* --- FLOATING DONATE BUTTON --- */
.floating-donate-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* In RTL this stays left, or we can use html[dir="rtl"] */
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(189, 142, 66, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

html[dir="rtl"] .floating-donate-btn {
    left: 30px;
    right: auto;
}

html[dir="ltr"] .floating-donate-btn {
    right: 30px;
    left: auto;
}

.floating-donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 142, 66, 0.6);
    color: var(--white);
}
