

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--t-med) var(--ease);
    white-space: nowrap;
}

html[lang="ar"] .btn {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--chartreuse);
    /* `!important` guards against inherited dark-section colors that some
       legacy rules cascade into the button text (was making the label
       invisible on dark service-bottom CTAs). */
    color: #101010 !important;
    border-color: var(--chartreuse);
}
.btn-primary .arrow { color: #101010; }

.btn-primary:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

html[data-theme="dark"] .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-outline:hover {
    background: var(--chartreuse);
    color: var(--black);
    border-color: var(--chartreuse);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--chartreuse-soft);
    border-color: var(--chartreuse);
    color: var(--chartreuse);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--chartreuse);
    border-color: var(--chartreuse);
    color: var(--black);
}

.btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.btn-lg { padding: 20px 44px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn .arrow {
    display: inline-block;
    transition: transform var(--t-med) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px); }

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    margin-bottom: 8px;
    font-weight: 500;
}

html[lang="ar"] .form-group label {
    text-transform: none;
    letter-spacing: 0;
}

.form-input,
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--input-border);
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text);
    transition: border-color var(--t-med) var(--ease);
    resize: vertical;
    font-weight: 400;
}

.form-input:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--chartreuse);
}

.form-input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--placeholder);
    font-weight: 300;
}

.form-box input,
.form-box textarea,
.form-box select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    background: var(--bg);
}

/* .form-field — boxed variant used by admin CRUD pages (team, captions, plans, invoices, ads) */
.form-field {
    margin-bottom: 18px;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-mute);
    margin-bottom: 6px;
    font-weight: 600;
}

html[lang="ar"] .form-field label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.88rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="search"],
.form-field input[type="file"],
.form-field textarea,
.form-field select {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
    resize: vertical;
    font-weight: 400;
    box-sizing: border-box;
}

.form-field textarea { min-height: 90px; line-height: 1.55; }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--chartreuse);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.18);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--placeholder);
    font-weight: 300;
}

.form-field input[type="checkbox"],
.form-field input[type="radio"] {
    width: auto;
    margin-inline-end: 6px;
    accent-color: var(--chartreuse);
}

.form-field small {
    display: block;
    margin-top: 4px;
    color: var(--text-mute);
    font-size: 0.78rem;
    line-height: 1.5;
}

.form-box input:focus,
.form-box textarea:focus,
.form-box select:focus {
    border-color: var(--chartreuse);
    box-shadow: 0 0 0 3px var(--chartreuse-soft);
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    border-inline-start: 3px solid;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(217, 4, 41, 0.1);
    border-color: var(--chartreuse);
    color: var(--text);
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border-color: #ef4444;
    color: var(--text);
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(28px, 3.5vw, 48px);
    transition: all var(--t-med) var(--ease);
    /* Without min-width:0, grid items refuse to shrink below their
       content's intrinsic min-width — which forces the headline word to
       overflow the column. With it, the column shrinks and headlines
       wrap normally. */
    min-width: 0;
}

.card:hover {
    border-color: var(--chartreuse);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--chartreuse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-bottom: 28px;
    transition: transform var(--t-med) var(--ease);
}

.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }

.card h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 16px;
}

.card p { font-size: 1rem; line-height: 1.7; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--t-fast) var(--ease);
}

html[lang="ar"] .card-link {
    text-transform: none;
    letter-spacing: 0;
}

.card-link:hover { color: var(--chartreuse); }
.card-link .arrow { transition: transform var(--t-med) var(--ease); }
.card-link:hover .arrow { transform: translateX(6px); }
html[dir="rtl"] .card-link:hover .arrow { transform: translateX(-6px); }

/* ─── Service grid (homepage + /services index) ──────────────────────
   Uniform 3-column responsive grid. Each card has a poster image at the
   top, then icon + title + excerpt + link. Replaces the old bento layout
   for service listings only — bento-* still used elsewhere on the home. */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
@media (max-width: 980px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
}

.service-card {
    padding: 0;                  /* image is flush to top edge */
    display: flex;
    flex-direction: column;
    overflow: hidden;            /* round the image with the card */
    position: relative;
}
.service-card-image {
    aspect-ratio: 4 / 5;         /* matches the source poster ratio */
    background: linear-gradient(135deg, #0f1306 0%, #050a0c 100%);
    overflow: hidden;
    position: relative;
}
.service-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.04); }

/* Placeholder for services without a poster — same chartreuse glow
   pattern as the news-cover-poster, keeps the grid visually consistent. */
.service-card-image--placeholder {
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(ellipse 60% 60% at 85% 15%, rgba(217, 4, 41,0.30) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 15% 85%, rgba(217, 4, 41,0.10) 0%, transparent 55%),
        linear-gradient(135deg, #131a05 0%, #050a0c 100%);
}
.service-card-image--placeholder span {
    font-family: var(--font-head, 'Montserrat', sans-serif);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    color: rgba(255,255,255,0.92);
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    line-height: 1;
}

.service-card-body {
    padding: clamp(20px, 2.4vw, 28px);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    margin-top: -28px;           /* lift the icon to overlap the image edge */
    position: relative;
    z-index: 1;
    border: 3px solid var(--card-bg);  /* punch out from the image */
    box-shadow: 0 6px 16px -6px rgba(0,0,0,.18);
}
.service-card-body h3 {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card-body p {
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
}
.service-card-body .card-link {
    margin-top: 18px;
    font-size: 0.78rem;
}

/* Prominent "View all services" CTA below the 6-card homepage grid */
.services-view-all {
    margin-top: 48px;
    text-align: center;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 100px;
}

/* /services index page CTA block */
.services-cta-block {
    margin-top: 56px;
    padding: 48px 32px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.services-cta-block::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(217, 4, 41,.20), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.services-cta-block h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}
.services-cta-block p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 24px;
    max-width: 640px;
    margin-inline: auto;
    position: relative;
}
.services-cta-block .btn { position: relative; }


.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.bento-large { grid-column: span 8; }
.bento-small { grid-column: span 4; }
.bento-full { grid-column: span 12; }

.bento-cta {
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.bento-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    inset-inline-end: -50px;
    width: 200px;
    height: 200px;
    background: var(--chartreuse);
    filter: blur(100px);
    opacity: 0.5;
    border-radius: 50%;
    pointer-events: none;
}

.bento-cta h3, .bento-cta p { color: var(--white); position: relative; z-index: 1; }
.bento-cta p { color: var(--cloud); }
.bento-cta .btn { position: relative; z-index: 1; }

/* Stack the bento cards earlier — at 1024px each card was still ~470px
   which is fine, but at 768-900px tablet-portrait they squeeze to ~340px
   and headlines like "Marketing Communications & PR" get crammed. */
@media (max-width: 1100px) {
    .bento-large, .bento-small { grid-column: span 6; }
}
@media (max-width: 720px) {
    .bento-large, .bento-small { grid-column: span 12; }
    .bento-grid { gap: 16px; }
}
/* On very narrow phones, ease the giant card font down a notch so it
   doesn't crash into the card edge. */
@media (max-width: 480px) {
    .card h3 { font-size: 1.25rem; line-height: 1.2; }
    .card { padding: 24px 22px; }
}

.marquee-section {
    padding: 48px 0;
    overflow: hidden;
    background: var(--bg-elev);
    border-block: 1px solid var(--border);
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    inset-inline-start: 0;
    background: linear-gradient(to right, var(--bg-elev), transparent);
}
.marquee-section::after {
    inset-inline-end: 0;
    background: linear-gradient(to left, var(--bg-elev), transparent);
}

html[dir="rtl"] .marquee-section::before {
    background: linear-gradient(to left, var(--bg-elev), transparent);
}
html[dir="rtl"] .marquee-section::after {
    background: linear-gradient(to right, var(--bg-elev), transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

html[dir="rtl"] .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 160px;
    padding: 0 24px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-mute);
    letter-spacing: -0.02em;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all var(--t-med) var(--ease);
    white-space: nowrap;
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0);
    color: var(--text);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 36px;
    margin-top: 56px;
}

.work-item {
    cursor: pointer;
    display: block;
}

.work-visual {
    background-color: #0d0d0d;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--t-slow) var(--ease);
    background-size: contain;      /* show the full design, no crop */
    background-position: center;
    background-repeat: no-repeat;
}

.work-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Lighter gradient since image is contained — only fades the bottom for tag readability */
    background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.55));
    opacity: 0.7;
    transition: opacity var(--t-med) var(--ease);
}

.work-item:hover .work-visual {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.work-item:hover .work-visual::after { opacity: 0.3; }

.work-tag {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    background: var(--white);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

html[lang="ar"] .work-tag {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
}

.work-item h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    transition: color var(--t-fast) var(--ease);
}

.work-item:hover h3 { color: var(--chartreuse); }
.work-item p { font-size: 0.95rem; }

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: var(--cloud); }
.section-dark .section-tag { color: var(--cloud); }

.page-head {
    padding: calc(var(--nav-h) + 120px) 5% 80px;
    background: radial-gradient(circle at top right, var(--chartreuse-soft), transparent 60%);
}

.page-head .container {
    max-width: 1200px;
}

.page-head h1 {
    margin-bottom: 24px;
    max-width: 900px;
}

.page-head .intro {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    max-width: 700px;
    color: var(--text-mute);
    font-weight: 300;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 32px;
    margin-top: 56px;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--chartreuse);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.news-cover {
    aspect-ratio: 16 / 10;
    background: var(--bg-elev) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.news-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--chartreuse-soft), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ─── Branded "poster" cover ───────────────────────────────────
   Used when an article has no uploaded cover image. Fixed Eslam Elfeky
   identity (dark gradient + chartreuse glow + grid pattern + logo)
   with the article's HOOK rendered as the hero typography. Each
   card looks like a designed share card.
   ────────────────────────────────────────────────────────────── */
.news-cover-poster {
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    background:
        radial-gradient(ellipse 70% 60% at 88% 12%, rgba(217, 4, 41,0.30) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 8% 90%,  rgba(217, 4, 41,0.10) 0%, transparent 55%),
        linear-gradient(135deg, #131a05 0%, #050a0c 100%);
    isolation: isolate;
}
.news-cover-poster::after { display: none; } /* override the soft tint overlay */

/* Subtle grid pattern for "designed poster" feel */
.news-cover-poster .poster-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(217, 4, 41,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 4, 41,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}
.news-cover-poster .poster-glow {
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(217, 4, 41,0.20), transparent 70%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

.news-cover-poster .poster-eyebrow {
    position: relative; z-index: 2;
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-head, 'Montserrat', sans-serif);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--chartreuse, #D90429);
    padding: 4px 10px;
    border: 1px solid rgba(217, 4, 41,0.45);
    border-radius: 100px;
    background: rgba(217, 4, 41,0.10);
    backdrop-filter: blur(6px);
}

.news-cover-poster .poster-hook {
    position: relative; z-index: 2;
    font-family: var(--font-head, 'Montserrat', sans-serif);
    font-size: clamp(.95rem, 1.5vw, 1.18rem);
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    letter-spacing: -.005em;
    text-shadow: 0 4px 20px rgba(0,0,0,.45);
    margin: 0;
    /* Limit visible lines, ellipsis tail */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 95%;
}

.news-cover-poster .poster-logo {
    position: relative; z-index: 2;
    align-self: flex-end;
    font-family: var(--font-head, 'Montserrat', sans-serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.95);
    letter-spacing: -.03em;
    line-height: 1;
}
.news-cover-poster .poster-logo em {
    font-style: normal;
    color: var(--chartreuse, #D90429);
}

/* RTL — flip the logo to start side, eyebrow to end side feels more natural */
.news-cover-poster[dir="rtl"] .poster-glow { right: auto; left: -10%; }

.news-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.75rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

html[lang="ar"] .news-date { text-transform: none; letter-spacing: 0; }

.news-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.news-body p {
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 20px;
}

.service-hero {
    padding: calc(var(--nav-h) + 120px) 5% 80px;
    background: radial-gradient(ellipse at top left, var(--chartreuse-soft), transparent 60%);
}

.service-hero .tag {
    color: var(--chartreuse);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    display: block;
}

.service-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    padding: 80px 5%;
    max-width: var(--container);
    margin: 0 auto;
}

.service-body .content p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.service-body .sidebar {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    align-self: start;
    position: sticky;
    top: 120px;
}

.service-body .sidebar h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    margin-bottom: 20px;
}

html[lang="ar"] .service-body .sidebar h4 {
    text-transform: none;
    letter-spacing: 0;
}

.service-body .sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-body .sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-body .sidebar li:last-child { border-bottom: none; }

.service-body .sidebar li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--chartreuse);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .service-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }
    .service-body .sidebar { position: static; }
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container);
    margin: 0 auto;
}

.contact-wrap .contact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-mute);
    margin-bottom: 4px;
}

html[lang="ar"] .contact-info-item strong {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}
