﻿/* ====== GENERAL RESET ====== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    min-height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

    body.app-body {
        background: #f4f6f8;
        color: #1f2933;
        font-size: 0.95rem;
        line-height: 1.7;
    }

        /* RTL / LTR helpers */
        body.app-body.rtl {
            direction: rtl;
            text-align: right;
        }

        body.app-body.ltr {
            direction: ltr;
            text-align: left;
        }

/* ====== LAYOUT WRAPPER ====== */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    padding: 2.5rem 0;
}

.main-footer {
    flex-shrink: 0;
}

/* ====== CONTAINER ====== */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ====== HEADER / NAVBAR ====== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 123, 58, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    flex-direction: column; /* عشان الصف العلوي وتحته الناف */
    gap: 0.4rem;
    padding: 0.55rem 0;
}

/* صف علوي: لوجو + (هامبورجر + لغات) */
.nav-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

/* اللوجو */
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #ffffff;
}

/* يمين الصف العلوي: زر الهامبورجر + اللغات في صف واحد */
.nav-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* نسيب nav-right للصف اللي تحته (اللينكات) */
.nav-right {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* باقي التنسيقات القديمة للبراند والناف */
.brand-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.brand-emoji {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* Nav links */
.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Brand */
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #ffffff;
}

.brand-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.brand-emoji {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* Right side (nav + lang + toggle) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Nav links */
.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

    .main-nav .nav-link {
        position: relative;
        font-size: 0.95rem;
        text-decoration: none;
        padding: 0.3rem 0;
        color: #e8f5ec;
    }

        .main-nav .nav-link::after {
            content: "";
            position: absolute;
            inset-inline: 0;
            bottom: -0.2rem;
            height: 2px;
            background: #ffffff;
            border-radius: 999px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.25s ease-out;
        }

        .main-nav .nav-link:hover::after,
        .main-nav .nav-link.active-nav::after {
            transform: scaleX(1);
        }

/* Language switch */
.nav-actions {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.lang-switch {
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    color: #ffffff;
    opacity: 0.85;
    transition: all 0.2s ease-out;
}

    .lang-switch:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.12);
    }

    .lang-switch.active {
        background: #ffffff;
        color: #0b7b3a;
        opacity: 1;
    }

/* Nav toggle (mobile) */
.nav-toggle {
    display: none;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
}

/* ====== HERO SECTION ====== */
.hero-section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    padding: 2.3rem 2rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left, #16a34a, #0b7b3a 55%, #064e3b 100%);
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 2.3rem;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 1.9rem;
    line-height: 1.3;
    margin: 0 0 0.8rem;
}

.hero-subtitle {
    margin: 0 0 1.4rem;
    font-size: 0.96rem;
    opacity: 0.97;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hero side badges */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 220px;
    margin-top: 1.2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 1rem;
    background: rgba(15, 118, 110, 0.52);
    backdrop-filter: blur(8px);
}

.hero-emoji {
    font-size: 1.5rem;
}

.hero-badge-title {
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-badge-sub {
    font-size: 0.8rem;
    opacity: 0.95;
}

/* Hero media (slider) */
.hero-media {
    flex: 1 1 320px;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.27);
    background: #022c22;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 260px;
}

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slide.active {
        display: block;
    }

/* Slider buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.18s ease-out, transform 0.18s ease-out;
}

    .hero-slider-btn.prev {
        inset-inline-start: 0.6rem;
    }

    .hero-slider-btn.next {
        inset-inline-end: 0.6rem;
    }

    .hero-slider-btn:hover {
        background: rgba(0, 0, 0, 0.65);
        transform: translateY(-50%) scale(1.05);
    }

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    inset-inline: 0;
    bottom: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

    .hero-slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: none;
        background: rgba(255, 255, 255, 0.45);
        transition: transform 0.18s ease-out, background 0.18s ease-out;
    }

        .hero-slider-dots .dot.active {
            background: #facc15;
            transform: scale(1.2);
        }

/* ====== BUTTONS ====== */
.btn {
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out, color 0.18s ease-out;
    white-space: nowrap;
}

    .btn.primary {
        background: #facc15;
        color: #1f2933;
        box-shadow: 0 10px 20px rgba(251, 191, 36, 0.35);
    }

        .btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 24px rgba(251, 191, 36, 0.45);
        }

    .btn.ghost {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.88);
        color: #ffffff;
    }

        .btn.ghost:hover {
            background: rgba(255, 255, 255, 0.14);
        }

/* ====== SECTIONS ====== */
.section {
    margin-bottom: 2.75rem;
    padding: 2rem 1.75rem;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.07);
}

    .section.muted {
        background: linear-gradient(135deg, #ecfdf3, #e0f2fe);
        box-shadow: none;
    }

.section-header {
    margin-bottom: 1.5rem;
}

.page-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    position: relative;
    padding-inline: 0.4rem;
}

.page-title-emoji {
    font-size: 1.9rem;
}

.page-title::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -0.25rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15, #22c55e, #0ea5e9);
    opacity: 0.9;
}

.section-header.center {
    text-align: center;
}

.section-header h1,
.section-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.section-header p {
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
}

.text-block {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
    max-width: 780px;
    margin: 0 auto;
}

    .text-block p {
        margin-bottom: 1rem;
    }

/* ====== CARD GRID ====== */
.card-grid {
    display: grid;
    gap: 1.2rem;
}

    .card-grid.three {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }

/* Info cards (categories) */
.info-card {
    border-radius: 1.1rem;
    padding: 1rem 1rem 1.1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s.ease-out, background 0.18s ease-out;
}

    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
        border-color: #0b7b3a;
        background: #f0fdf4;
    }

.info-emoji {
    font-size: 2rem;
    margin-bottom: 0.1rem;
}

.info-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.info-text {
    font-size: 0.9rem;
    margin: 0;
    color: #4b5563;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.step-card {
    border-radius: 1rem;
    padding: 0.9rem 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    backdrop-filter: blur(8px);
}

.step-emoji {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-text {
    font-size: 0.83rem;
    color: #374151;
}

/* ===== HOME PAGE GALLERY ===== */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.home-gallery-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .home-gallery-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
    }

    .home-gallery-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

/* ====== CONTACT LAYOUT ====== */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

@media (min-width: 820px) {
    .contact-layout {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }
}

.contact-card {
    border-radius: 1.2rem;
    padding: 1.2rem 1.2rem 1.4rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

/* ====== FOOTER ====== */
.main-footer {
    background: linear-gradient(135deg, #064e3b, #0b7b3a);
    color: #e5e7eb;
    padding-top: 1.8rem;
    margin-top: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    padding-bottom: 1.2rem;
}

.footer-title {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
}

.footer-text {
    margin: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
    opacity: 0.9;
    text-align: justify;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}

    .footer-links li + li,
    .footer-contact li + li {
        margin-top: 0.25rem;
    }

    .footer-links a {
        color: #e5e7eb;
        text-decoration: none;
        opacity: 0.9;
        transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    }

        .footer-links a:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

.footer-contact-label {
    display: inline-block;
    min-width: 80px;
    font-weight: 600;
    opacity: 0.95;
}

.footer-contact a {
    color: #f9fafb;
    text-decoration: none;
    border-bottom: 1px dashed rgba(249, 250, 251, 0.4);
    padding-bottom: 1px;
}

    .footer-contact a:hover {
        opacity: 0.95;
    }

/* Bottom strip */
.footer-bottom {
    border-top: 1px solid rgba(229, 231, 235, 0.25);
    padding: 0.6rem 0;
    font-size: 0.8rem;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
}

.footer-powered {
    opacity: 0.85;
}

/* ====== ANIMATIONS ====== */
.fade-in-up {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 0.9s ease-out forwards;
}

    .fade-in-up.delay-1 {
        animation-delay: 0.18s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .brand-text {
        font-size: 0.9rem;
    }

    .brand-sub {
        font-size: 0.75rem;
    }

    .main-nav .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    /* الصف العلوي يفضل صف واحد برضه */
    .nav-header-row {
        padding-inline: 0.4rem;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    /* زر الهامبورجر يظهر في الموبايل */
    .nav-toggle {
        display: inline-flex;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: none;
        background: rgba(0, 0, 0, 0.25);
        color: #ffffff;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    /* نخلي زر + لغات في نفس السطر يمين/شمال حسب الاتجاه */
    .nav-header-actions {
        margin-inline-start: auto;
    }

    /* في الوضع العادي: نخفي الناف */
    .main-header:not(.nav-open) .main-nav {
        display: none;
    }

    /* لما نفتح الهامبورجر: نظهر الناف تحت الهيدر */
    .main-header.nav-open .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .hero-section {
        flex-direction: column;
        padding: 1.8rem 1.4rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-media {
        width: 100%;
        margin-top: 1.2rem;
    }

    .hero-slide {
        height: 220px;
    }

    .section {
        padding: 1.6rem 1.3rem;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-gallery-card img {
        height: 230px;
    }
}


/* ====== CURSOR POINTER FOR CLICKABLES ====== */
a,
button,
.info-card,
.home-gallery-card,
.hero-slider-btn,
.nav-toggle {
    cursor: pointer;
}

/* ====== FULL GALLERY PAGE ====== */
.gallery-grid.full-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.photo-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .photo-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
    }

.gallery-photo {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

    .gallery-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.photo-card:hover .gallery-photo img {
    transform: scale(1.06);
}

/* موبايل وتابلت للمعرض */
@media (max-width: 900px) {
    .gallery-grid.full-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-photo {
        height: 210px;
    }
}

@media (max-width: 600px) {
    .gallery-grid.full-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-photo {
        height: 220px;
    }
}

/* ====== GALLERY CTA BUTTON (HOME) ====== */
.gallery-cta-btn {
    background: #0b7b3a;
    color: #ffffff;
    border: none;
    padding: 0.55rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(11, 123, 58, 0.32);
}

    .gallery-cta-btn:hover {
        background: #0a6b32;
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(11, 123, 58, 0.42);
    }

/* ===== FULL GALLERY GRID (new) ===== */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    margin-top: 1.6rem;
}

    .full-gallery-grid .photo-card {
        background: #ffffff;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        cursor: pointer;
    }

        .full-gallery-grid .photo-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
        }

        .full-gallery-grid .photo-card img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            transition: transform 0.3s.ease;
        }

        .full-gallery-grid .photo-card:hover img {
            transform: scale(1.06);
        }

/* Tablet */
@media (max-width: 900px) {
    .full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .full-gallery-grid {
        grid-template-columns: 1fr;
    }

        .full-gallery-grid .photo-card img {
            height: 220px;
        }
}

/* ===== LIGHTBOX (Gallery Image Zoom) ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1rem;
}

.lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    background: #020617;
}

    .lightbox-inner img {
        width: 100%;
        height: 100%;
        max-height: 90vh;
        object-fit: contain;
        background: #000;
    }

.lightbox-close {
    position: absolute;
    inset-inline-end: 0.6rem;
    top: 0.4rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.85);
    color: #f9fafb;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease-out, transform 0.18s.ease-out;
}

    .lightbox-close:hover {
        background: rgba(248, 250, 252, 0.98);
        color: #020617;
        transform: scale(1.05);
    }

/* موبايل */
@media (max-width: 600px) {
    .lightbox-inner {
        max-width: 100%;
        border-radius: 0.8rem;
    }
}

/* ====== STATUS BOXES ====== */
.success-box {
    background: #d1fae5;
    color: #065f46;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    border: 1px solid #34d399;
}

.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    border: 1px solid #f87171;
}

/* ====== CONTACT FORM ====== */
.contact-form button {
    cursor: pointer;
}

.contact-card li,
.contact-list li {
    font-size: 0.95rem;
}

.page-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* شكل الفورم نفسه */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* كل صف (ليبل + حقل) */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    /* الليبل فوق كل حقل */
    .form-row label {
        font-size: 0.9rem;
        color: #4b5563;
        margin-bottom: 0.05rem;
    }

    /* الحقول نفسها */
    .form-row input,
    .form-row textarea {
        width: 100%;
        box-sizing: border-box;
        border-radius: 0.7rem;
        border: 1px solid #d1d5db;
        padding: 0.5rem 0.7rem;
        font-size: 0.95rem;
        background-color: #ffffff;
        outline: none;
        resize: vertical;
    }

        /* فوكس الحقول */
        .form-row input:focus,
        .form-row textarea:focus {
            border-color: #0b7b3a;
            box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.25);
        }

/* عنوان الكارتين في الكونتاكت */
.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ترتيب أعمدة الكونتاكت لو استخدمناها */
.contact-form-card {
    order: 1;
}

.contact-info-card {
    order: 2;
}

/* في الموبايل الأعمدة تحت بعض بشكل مرتب */
@media (max-width: 820px) {
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}
