/* RTL & Mobile Overrides — بصيرة Theme */

/* Mobile nav open state */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(6,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
}

.nav-links.mobile-open a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
}

.nav-links.mobile-open a:hover {
    background: rgba(255,255,255,0.04);
}

/* Footer contact links */
.footer-contact-item a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Footer launch note */
.footer-launch-note {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(201,152,42,0.07);
    border: 1px solid rgba(201,152,42,0.15);
}
.footer-launch-badge {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}
.footer-launch-text {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* Post content styles */
.post-content {
    font-size: 16px;
    line-height: 2;
    color: #333;
    max-width: 720px;
}
.post-content h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--navy); margin: 40px 0 16px; }
.post-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-right: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
    border-right: 3px solid var(--gold);
    padding-right: 20px;
    margin: 28px 0;
    font-style: italic;
    color: var(--blue);
    font-size: 18px;
    font-family: var(--font-display);
}
.post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }
.post-content a { color: var(--gold); text-decoration: underline; }
.post-content a:hover { color: var(--steel); }

/* Service card full page */
.service-card-full {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    max-width: 800px;
    margin: 120px auto 80px;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    z-index: 200;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* WP alignment classes */
.alignleft  { float: right; margin-left: 24px; }
.alignright { float: left; margin-right: 24px; }
.aligncenter { display: block; margin: 0 auto; }
.alignwide  { margin-left: calc(-25%); margin-right: calc(-25%); max-width: 150%; }

/* Admin bar adjustment */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
