.contact-social .social-icons {
    justify-content: flex-start;
}

.contact-social .social-icon {
    background: rgba(0, 0, 0, 0.08);
    color: #1b1f24;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', Arial, sans-serif;
    background-color: #f7fafc;
    color: #111;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: #0e6f52;
    white-space: nowrap;
}

.logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.logo span {
    font-size: 1.2rem;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
}

.main-nav a {
    text-decoration: none;
    color: #1b1f24;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.main-nav a:hover {
    color: #0d8c6c;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
}

body.rtl .nav-controls {
    margin-left: 0;
    margin-right: auto;
}

.lang-btn {
    border: none;
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fa57d, #1c77c3);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(23, 130, 140, 0.25);
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #e9fff5, #f8fbff);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(31, 165, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(28, 119, 195, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(43, 176, 122, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.9;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.95;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 200px
        );
    animation: subtleMove 30s linear infinite;
    pointer-events: none;
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #064c3b;
}

.hero p {
    color: #44615a;
    margin-bottom: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #2bb07a;
    margin-bottom: 0.6rem;
}

.hero-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 75, 58, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(15, 75, 58, 0.2);
}

.hero-card h3 {
    margin-bottom: 1.5rem;
    color: #064c3b;
    font-size: 1.5rem;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.impact-list li {
    margin: 0;
    font-size: 1.1rem;
    color: #44615a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.impact-list strong {
    font-size: 2rem;
    color: #0ec887;
    font-weight: 700;
}

.btn {
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    min-height: 48px;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn {
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* Donate Modal Styles */
.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.donate-modal.active {
    display: flex;
}

.donate-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.donate-modal-content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.donate-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.donate-modal-close:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.donate-modal-content h2 {
    font-size: 2rem;
    color: #064c3b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.donate-modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.donate-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.donate-option-card:hover {
    border-color: #0ec887;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 200, 135, 0.2);
    background: linear-gradient(135deg, rgba(14, 200, 135, 0.05), rgba(29, 135, 216, 0.05));
}

.donate-option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.donate-option-card h3 {
    font-size: 1.5rem;
    color: #064c3b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.donate-option-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .donate-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .donate-modal-content h2 {
        font-size: 1.5rem;
    }

    .donate-options {
        grid-template-columns: 1fr;
    }
}

.btn.primary {
    background: linear-gradient(135deg, #0ec887, #1d87d8);
    color: #fff;
}

.btn.ghost {
    border: 1px solid #0ec887;
    color: #0ec887;
}

.split,
.projects-list,
.values,
.team,
.contact {
    padding: 3rem 0;
}

.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef6f3, #f8fbff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', Arial, sans-serif;
}

.auth-wrapper {
    width: 100%;
    max-width: 520px;
    padding: 2rem;
}

.auth-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(13, 63, 51, 0.12);
    padding: 2.5rem;
}

.auth-brand {
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-brand img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    margin: 0 auto 0.8rem;
}

.auth-brand h1 {
    margin-bottom: 0.4rem;
    color: #041f1a;
}

.auth-brand p {
    color: #4c5f5a;
}

.auth-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #718186;
    margin-top: 0.8rem;
}

.admin-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef6f3, #f8fbff);
    font-family: 'Cairo', Arial, sans-serif;
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0f3d32;
    color: #fff;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.sidebar-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.sidebar-brand h2 {
    font-size: 1.4rem;
    line-height: 1.2;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sidebar-logout {
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.admin-main {
    padding: 2.5rem;
}

.admin-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.admin-main-header h1 {
    margin-bottom: 0.3rem;
}

.admin-main-header .subtext {
    color: #55656a;
    margin: 0;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.admin-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(15, 75, 58, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.admin-card h3 {
    margin-bottom: 0.4rem;
    color: #03231d;
}

.admin-card p {
    color: #5a6663;
}

.admin-card .btn {
    width: fit-content;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

@media (max-width: 960px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-logout {
        margin-top: 0;
    }
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-form label {
    font-weight: 600;
    color: #0f3d32;
}

.auth-form input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 0.9rem 1rem;
    margin-top: 0.4rem;
    font-size: 1rem;
}

.auth-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.single-channel {
    background: #f4faf7;
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.contact-details,
.contact-social {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(15, 75, 58, 0.08);
}

.location-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background: rgba(14, 200, 135, 0.15);
    color: #0f7756;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-note {
    color: #4c5f5a;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #1dd366, #0ca95a);
    color: #fff;
    font-weight: 700;
    min-width: 220px;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(29, 211, 102, 0.3);
    margin-top: 1.5rem;
}

.contact-social h4 {
    margin-bottom: 0.5rem;
    color: #064c3b;
}

.contact-social p {
    color: #4c5f5a;
    margin-bottom: 1.5rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    color: #0f3d32;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.status-chart {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.chart-bars {
    margin-top: 1rem;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.chart-bar {
    flex: 1;
    background: #eef6f3;
    border-radius: 999px;
    height: 10px;
}

.chart-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #0ec887, #1d87d8);
}

.admin-table {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #eef2f6;
    text-align: left;
}

.admin-form {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.section-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.about-hero {
    background: linear-gradient(135deg, #f3fbf7, #e8f4ff);
    text-align: center;
}

.about-title {
    font-size: 3rem;
    color: #064c3b;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.1rem;
    color: #315b50;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.about-card-grid {
    padding: 3rem 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.story-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(15, 75, 58, 0.06);
    border-top: 4px solid #0ec887;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.story-card h2 {
    color: #064c3b;
    margin-bottom: 1rem;
}

.story-card p {
    color: #4c5f5a;
    margin-bottom: 0.8rem;
}

.story-card.span-2 {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .story-card.span-2 {
        grid-column: span 1;
    }
}

.about-method {
    padding: 3rem 0;
    background: #f6fbf9;
}

.method-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.about-offers {
    padding: 3rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.offer-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.offers-list li {
    padding-left: 1.8rem;
    position: relative;
    font-weight: 600;
    color: #0f3d32;
}

.offers-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ec887;
    font-size: 1.5rem;
    line-height: 1;
}

.mission-card {
    background: linear-gradient(135deg, #0ec887, #1d87d8);
    color: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(13, 63, 51, 0.18);
}

.about-team {
    padding: 3rem 0 4rem;
    background: #f9fbfa;
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.team-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-highlight {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.team-ribbon {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #0ec887;
    color: #fff;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.team-highlight h3 {
    margin-bottom: 0.5rem;
    color: #064c3b;
}

.team-highlight p {
    margin: 0;
    color: #4c5f5a;
}

/* Home Projects Section */
.home-projects {
    padding: 3rem 0;
    background: #f9fbfa;
}

.section-title {
    font-size: 2.5rem;
    color: #064c3b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.home-projects-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.home-project-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.home-project-image {
    width: 300px;
    min-width: 300px;
    height: 250px;
    overflow: hidden;
    background: #e6f5f0;
}

.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-project-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-project-content h3 {
    font-size: 1.8rem;
    color: #064c3b;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.home-project-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.home-project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.view-all-projects {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .home-project-card {
        flex-direction: column;
    }

    .home-project-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .home-project-content {
        padding: 1.5rem;
    }

    .home-project-content h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.section-shortcuts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.section-shortcuts a {
    text-decoration: none;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #cdebe4;
    color: #0f7756;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.section-shortcuts a:hover {
    background: #0ec887;
    color: #fff;
}

.cards {
    display: grid;
    gap: 1.5rem;
}

.cards article {
    background: #fff;
    padding: 1.6rem;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(13, 63, 51, 0.08);
}

.split-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.stat-card strong {
    font-size: 3rem;
    color: #0f7756;
}

.progress {
    background: #e6f5f0;
    border-radius: 999px;
    height: 10px;
    width: 100%;
    margin: 0.8rem 0;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #0ec887, #1d87d8);
}

.page-hero {
    padding: 3rem 0 1rem;
    text-align: center;
}

.page-hero .narrow {
    max-width: 700px;
}

.projects-list .project-card {
    overflow: hidden;
    padding: 0;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.project-body {
    padding: 1.5rem;
}

.status {
    display: inline-block;
    background: #e9f9f3;
    color: #0f7756;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 0.5rem;
    padding-left: 1.4rem;
    position: relative;
}

.checklist li::before {
    content: '•';
    color: #0ec887;
    position: absolute;
    left: 0;
}

.contact form {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
}

input,
textarea {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
}

.form-status {
    min-height: 1.2rem;
    font-weight: 600;
}

.site-footer {
    background: linear-gradient(135deg, #0f3d32, #064c3b);
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid rgba(14, 200, 135, 0.3);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #9bf0d5;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #9bf0d5;
    padding-left: 5px;
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #9bf0d5;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: rgba(14, 200, 135, 0.2);
    border-color: #0ec887;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 200, 135, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 193, 7, 0.2));
    border-color: #e1306c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-icon.tiktok:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
}

.rtl {
    direction: rtl;
}

body.rtl .nav-container {
    flex-direction: row-reverse;
}

body.rtl .main-nav {
    direction: rtl;
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 70px;
        left: 5%;
        right: 5%;
        background: #fff;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1.2rem;
        display: none;
        z-index: 99;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        margin-left: 0;
    }

    .nav-controls {
        margin-left: 0;
        margin-right: 0;
    }
}

