﻿/* ====================================
   About Page Styles - Green & Black Theme
   ==================================== */

.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    direction: rtl;
}

.about-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 4px solid #22c55e !important;
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1a1a1a !important;
    margin: 0;
    letter-spacing: -0.5px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #22c55e;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.2);
    border-left-color: #16a34a;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #22c55e !important;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: #22c55e;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333 !important;
    margin-bottom: 15px;
    text-align: justify;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text.highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    padding: 20px;
    border-right: 5px solid #22c55e !important;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1a1a !important;
    border-radius: 4px;
    margin-top: 15px;
}

.values-list {
    list-style: none;
    padding: 20px 0;
    margin: 20px 0;
    border-right: 4px solid #22c55e !important;
    padding-right: 20px;
}

.values-list li {
    padding: 15px 0;
    padding-right: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333 !important;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    right: -20px;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: #22c55e !important;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .about-block {
        padding: 20px;
        border-left: 3px solid #22c55e;
    }

    .section-text {
        font-size: 1rem;
        text-align: right;
    }

    .values-list {
        padding-right: 15px;
    }

    .values-list li {
        padding-right: 25px;
    }
}

/* RTL Direction Support */
@supports (direction: rtl) {
    .about-section {
        direction: rtl;
    }

    .section-text {
        text-align: right;
    }

    .section-heading {
        border-right: none;
        border-bottom: 3px solid #22c55e !important;
        padding-bottom: 12px;
    }

    .section-heading::after {
        right: auto;
        left: 0;
    }

    .section-text.highlight {
        border-right: 5px solid #22c55e !important;
        border-left: none;
        text-align: right;
    }

    .values-list {
        border-right: 4px solid #22c55e !important;
        border-left: none;
        padding-right: 20px;
        padding-left: 0;
    }

    .values-list li {
        padding-right: 15px;
        padding-left: 0;
        border-left: none;
        text-align: right;
    }

    .values-list li::before {
        right: -20px;
        left: auto;
    }
}

/* ================================
   Footer Navigation Two Columns Styles
   ================================ */
/* יישור שתי העמודות הראשיות לגובה אחיד */
/* GENERAL FOOTER */
.footer-area {
    background: #f9fafb;
    padding: 60px 0;
    direction: rtl;
}

.footer-main {
    display: flex;
    align-items: stretch !important;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* NAV COLUMNS */
.footer-nav-column h6 {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 5px;
}

.footer-nav-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-nav-column ul li {
        margin-bottom: 8px;
    }

        .footer-nav-column ul li a {
            color: #333;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-nav-column ul li a:hover {
                color: #22c55e;
                padding-right: 5px;
            }

/* SOCIAL */
.footer-social ul {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
}

/* RIGHTS */
.rights-text {
    font-size: 0.85rem;
    color: #666;
}

/* MOBILE VERSION */
.footer-mobile {
    text-align: center;
    margin-top: 40px;
}

.mobile-social ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin-bottom: 15px;
}

.mobile-rights {
    font-size: 0.85rem;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-area {
        padding: 40px 0;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-nav-column h6 {
        font-size: 1rem;
    }

    .footer-nav-column ul li a {
        font-size: 0.95rem;
    }
}

/* --- MOBILE FOOTER RESPONSIVE FIX --- */
/* -----------------------------------
   FOOTER MOBILE
----------------------------------- */
.footer-mobile {
    display: none;
}

@media (max-width: 768px) {

    /* מסתיר את הפוטר הרגיל */
    .footer-area .row.align-items-start {
        display: none !important;
    }

    /* מציג את גרסת המובייל */
    .footer-mobile {
        display: block;
        padding: 35px 20px;
        text-align: center;
        direction: rtl;
    }

    /* לוגו */
    .footer-mobile-logo img {
        width: 150px;
        margin-bottom: 20px;
    }

    /* כותרות */
    .mobile-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    /* רשתות */
    .footer-mobile-social ul {
        display: flex;
        justify-content: center;
        gap: 18px;
        margin: 20px 0;
        padding: 0;
        list-style: none;
    }

    .footer-mobile-social img {
        width: 30px;
    }

    /* Contact */
    .footer-mobile-section.contact p {
        margin: 5px 0;
        font-size: 1rem;
    }

    /* Accordion */
    .footer-accordion {
        margin-top: 25px;
        text-align: right;
    }

    .accordion-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }

    .accordion-btn {
        width: 100%;
        background: none;
        border: none;
        text-align: right;
        font-size: 1.1rem;
        font-weight: bold;
        padding: 10px 0;
        cursor: pointer;
        color: #333;
    }

    .accordion-content {
        display: none;
        padding-right: 10px;
        list-style: none;
        margin: 0;
    }

        .accordion-content li {
            padding: 6px 0;
        }

            .accordion-content li a {
                font-size: 1rem;
                color: #333;
                text-decoration: none;
            }

                .accordion-content li a:hover {
                    color: #22c55e;
                }

    /* זכויות */
    .footer-mobile-rights {
        margin-top: 25px;
        font-size: 0.9rem;
        color: #777;
    }
}

