/*
 * Theme Name:        Saudiiwaa
 * Theme URI:         https://mahmoudsalama.net/
 * Description:       قالب WordPress احترافي لشركة إيواء السعودية — حلول متكاملة لتسكين القوى العاملة. مطابق للموقع الأصلي مع دعم كامل لأداة التعديلات.
 * Version:           1.0.0
 * Author:            Mahmoud Salama
 * Author URI:        https://mahmoudsalama.net/
 * Text Domain:       saudiiwaa
 * Domain Path:       /languages
 * Requires at least: 6.0
 * Tested up to:      6.7
 * Requires PHP:      8.0
 * License:           Exclusively sold on only Call Me
 * Tags:              rtl-language, arabic, right-to-left, business, corporate
 *
 * @category  WP
 * @package   WP - Saudiiwaa
 * @author    Mahmoud Salama <m.salama2003@icloud.com>
 * @copyright 2026 - Mahmoud Salama
 * @license   Exclusively sold on only Call Me
 * @link      https://mahmoudsalama.net/
 * @phone     +966566366464 - +201111202057
 * @version   1.0.0
 */

/* =====================================================
   ROOT VARIABLES
   ===================================================== */
:root {
    --primary:        #d1162b;
    --primary-dark:   #a50f21;
    --primary-light:  rgba(209,22,43,0.1);
    --secondary:      #1a1a2e;
    --text:           #1a1a2e;
    --text-muted:     #6b7280;
    --bg:             #ffffff;
    --bg-alt:         #f8f9fa;
    --border:         #e5e7eb;
    --card-bg:        #ffffff;
    --card-shadow:    0 4px 24px rgba(0,0,0,0.07);
    --radius:         12px;
    --radius-lg:      20px;
    --font-ar:        'Cairo', 'Noto Sans Arabic', 'Segoe UI', Arial, sans-serif;
    --transition:     0.25s ease;
    --header-h:       68px;
    --header-offset:  calc(var(--header-h) + 32px);
}

[data-theme="dark"] {
    --text:       #f1f5f9;
    --text-muted: #9ca3af;
    --bg:         #0f172a;
    --bg-alt:     #1e293b;
    --border:     #334155;
    --card-bg:    #1e293b;
    --card-shadow:0 4px 24px rgba(0,0,0,0.3);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ar);
    background: var(--bg);
    color: var(--text);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

body.ltr { direction: ltr; font-family: 'Inter', sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-heading-text { flex: 1; }
.section-heading-controls { display: flex; gap: 8px; align-items: center; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary, .nt-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover, .nt-btn--primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline, .nt-btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

.nt-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nt-link-btn:hover {
    background: var(--primary);
    color: #fff;
}

.section-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    font-size: 0.85rem;
}

.section-arrow:hover { border-color: var(--primary); color: var(--primary); }

/* =====================================================
   HEADER / NAVBAR — Floating Card (matches photo/1.png)
   ===================================================== */
.site-header-wrap {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 1000;
    padding: 16px 20px;
    pointer-events: none;
}

.site-header {
    pointer-events: all;
    background: var(--bg);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    height: var(--header-h);
    max-width: 1200px;
    margin: 0 auto;
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header-wrap.scrolled .site-header {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 20px;
    gap: 16px;
}

/* Logo — right side */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.navbar-brand__fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

.navbar-brand__name {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary);
}

.navbar-brand__sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* Nav links — center */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-item a {
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    display: block;
}

.nav-item a:hover,
.nav-item.active a,
.nav-item.current-menu-item a {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 8px;
}

/* Actions — left side */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.theme-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem;
    transition: all var(--transition);
}

.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: calc(var(--header-offset) + 8px);
    right: 20px; left: 20px;
    background: var(--bg);
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; border-radius: 8px; font-weight: 600; color: var(--text); display: block; }
.mobile-nav a:hover { background: var(--bg-alt); color: var(--primary); }

@media (max-width: 900px) {
    .navbar-nav { display: none; }
    .hamburger { display: flex; }
}

/* =====================================================
   HERO SECTION — matches photo/1.png exactly
   Layout: text centered above, full-width image below
   ===================================================== */
.nt-hero {
    background: var(--bg);
    padding: calc(var(--header-h) + 56px) 0 0;
    overflow: hidden;
}

/* ── Top text block (centered) ── */
.nt-hero__top {
    text-align: center;
    padding-bottom: 28px;
}

.nt-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 24px;
    display: inline;
}

.nt-hero__accent {
    color: var(--primary);
    font-style: normal;
    font-weight: 900;
}

/* Three features in one horizontal row */
.nt-hero__features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nt-hero__feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
}

/* Divider lines between features */
.nt-hero__feat + .nt-hero__feat::before {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 18px;
    background: var(--border);
}

.nt-hero__feat-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    display: inline-block;
}

/* ── Full-width image box ── */
.nt-hero__imgbox {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin: 0 0 0 0;
}

.nt-hero__photo {
    width: 100%;
    height: clamp(320px, 48vw, 520px);
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* CTA button — bottom start (RTL = right visually) */
.nt-hero__cta {
    position: absolute;
    bottom: 24px;
    inset-inline-start: 24px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 16px rgba(209,22,43,0.35);
}

.nt-hero__cta:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* XP Badge — bottom end (RTL = left visually) */
.nt-hero__xp {
    position: absolute;
    bottom: 24px;
    inset-inline-end: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    min-width: 80px;
}

.nt-hero__xp-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.nt-hero__xp-lbl {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 4px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nt-hero__photo { height: 260px; border-radius: 14px 14px 0 0; }
    .nt-hero__feat + .nt-hero__feat::before { display: none; }
    .nt-hero__feat { padding: 4px 10px; }
    .nt-hero__title { font-size: 1.8rem; }
}

/* =====================================================
   QUOTE REQUEST SECTION (matches photo/2.png)
   ===================================================== */
.nt-quote--bar {
    background: var(--bg-alt);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.nt-quote-bar__card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--card-shadow);
}

.nt-quote-bar__fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 900px) { .nt-quote-bar__fields { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .nt-quote-bar__fields { grid-template-columns: 1fr; } }

.nt-quote-bar__field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-align: right;
}

.nt-quote-bar__field label span { color: var(--primary); }

.nt-quote-bar__field input,
.nt-quote-bar__field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    font-family: inherit;
}

.nt-quote-bar__field input:focus,
.nt-quote-bar__field select:focus {
    outline: none;
    border-color: var(--primary);
}

.nt-quote-bar__bottom { display: flex; flex-direction: column; gap: 16px; }

.nt-quote-bar__bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nt-quote-bar__bottom-city,
.nt-quote-bar__bottom-svc {
    flex: 1;
    min-width: 160px;
}

.nt-quote-bar__bottom-city label,
.nt-quote-bar__bottom-svc label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.nt-quote-bar__bottom-city select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
}

.nt-quote-bar__svc-checks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 4px;
}

.nt-quote-bar__check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    cursor: pointer;
    font-weight: 600;
}

.nt-quote-bar__btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background var(--transition);
}

.nt-quote-bar__btn:hover { background: var(--primary-dark); }

.nt-quote__msg {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.nt-quote__msg--ok { background: #d1fae5; color: #065f46; }
.nt-quote__msg--err { background: #fee2e2; color: #991b1b; }

/* =====================================================
   CLIENTS / PARTNERS SECTION — Infinite Marquee
   ===================================================== */
.nt-clients {
    padding: 56px 0 48px;
    background: var(--bg-alt);
    overflow: hidden;
}

.nt-clients__head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    text-align: center;
}

.nt-clients__head .nt-section-title { font-size: 1.6rem; }

/* ── حاوية التمرير بدون overflow ── */
.nt-clients__marquee-wrap {
    width: 100%;
    overflow: hidden;
}

/* ── الشريط المتحرك ── */
.nt-clients__marquee {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    padding: 16px 0;
    will-change: transform;
}

.nt-clients__marquee:hover { animation-play-state: paused; }

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

[dir="rtl"] .nt-clients__marquee {
    animation-name: marqueeScrollRTL;
}
@keyframes marqueeScrollRTL {
    0%   { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ── بطاقة شريك ── */
.nt-clients__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    min-width: 140px;
    height: 72px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.nt-clients__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.nt-clients__item img {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter var(--transition);
}

.nt-clients__item:hover img { filter: grayscale(0); }

.nt-clients__item a { display: flex; align-items: center; justify-content: center; }

.nt-clients__viewall-wrap { text-align: center; margin-top: 32px; padding-bottom: 8px; }

/* =====================================================
   SERVICES SECTION (matches photo/3.png)
   ===================================================== */
.nt-services { padding: 80px 0; }

.nt-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.nt-section-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--text);
}

.nt-section-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

.nt-services__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.nt-services__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 16px;
    flex: 1;
}

.nt-services__track::-webkit-scrollbar { display: none; }

.nt-services__card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: clamp(260px, 22vw, 320px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: 1.5px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
}

.nt-services__card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.nt-services__img-wrap { height: 220px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

.nt-services__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nt-services__card:hover .nt-services__photo { transform: scale(1.05); }

.nt-services__photo-ph {
    width: 100%; height: 100%;
    background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.nt-services__body { padding: 18px 20px 22px; }

.nt-services__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}

.nt-services__desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
    display: block;
    overflow: visible;
    width: 100%;
}

.nt-services__nav {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.nt-services__nav:hover { border-color: var(--primary); color: var(--primary); }

.nt-srv-cta-divider {
    text-align: center;
    padding: 24px 0;
}

.nt-srv-cta-divider__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition);
}

.nt-srv-cta-divider__btn:hover { background: var(--primary-dark); }

/* =====================================================
   YOUR NEEDS SECTION (matches photo/4.png)
   ===================================================== */
.nt-needs { padding: 80px 0; background: var(--bg-alt); }

.nt-needs__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 40px;
}

@media (max-width: 768px) { .nt-needs__layout { grid-template-columns: 1fr; } }

.nt-needs__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.nt-needs__image {
    width: 100%; height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: opacity 0.25s ease;
}

.nt-needs__list { display: flex; flex-direction: column; gap: 12px; }

.nt-needs__item {
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--card-bg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.nt-needs__item:hover,
.nt-needs__item.active {
    border-color: var(--nd-color, var(--primary));
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.nt-needs__item-bar {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--nd-color, var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: 0 4px 4px 0;
}

.nt-needs__item.active .nt-needs__item-bar { opacity: 1; }

.nt-needs__item-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
}

.nt-needs__item-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nt-needs__item.active .nt-needs__item-icon {
    background: var(--nd-color, var(--primary));
    color: #fff;
}

.nt-needs__item-text { flex: 1; }
.nt-needs__item-text h3 { font-size: 0.95rem; font-weight: 800; color: var(--text); }
.nt-needs__item-text p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.nt-needs__item-arrow { color: var(--text-muted); font-size: 0.85rem; }
.nt-needs__item.active .nt-needs__item-arrow { color: var(--nd-color, var(--primary)); }

/* =====================================================
   COMPOUNDS SECTION (matches photo/5.png)
   ===================================================== */
.nt-compounds, .properties-section { padding: 80px 0; }

.property-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: 1.5px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.property-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.property-media { position: relative; height: 280px; overflow: hidden; }

.property-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-img { transform: scale(1.04); }

.property-location {
    position: absolute;
    bottom: 10px; right: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.property-body { padding: 10px 14px; }

.property-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    text-align: center;
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 6px;
}

.property-amenity {
    width: 26px; height: 26px;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    color: #999;
    font-size: 0.7rem;
    transition: all var(--transition);
}

.property-amenity:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) { .properties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .properties-grid { grid-template-columns: 1fr; } }

.properties-viewall-wrap {
    text-align: center;
    margin-top: 40px;
}

.properties-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.properties-viewall:hover { background: var(--primary-dark); }

/* =====================================================
   NEWS SECTION
   ===================================================== */
.nt-news { padding: 80px 0; background: var(--bg-alt); }
.nt-news .nt-section-head { text-align: center; justify-content: center; }

/* ── الحاوية الرئيسية ── */
.nt-news__layout { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }

/* ── خبر 1: عرض كامل ── */
.nt-news__card--full {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--transition);
}
.nt-news__card--full:hover { transform: translateY(-3px); }

/* ── صف خبر طويل + شبكة 4 ── */
.nt-news__row-tall {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
    align-items: stretch;
}

/* ── خبر طويل ── */
.nt-news__card--tall {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    min-height: 420px;
    transition: transform var(--transition);
}
.nt-news__card--tall:hover { transform: translateY(-3px); }

/* ── شبكة 4 صغار 2×2 ── */
.nt-news__grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

/* ── صف 4 متساوية ── */
.nt-news__row4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── خبر صغير ── */
.nt-news__card--small {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    min-height: 200px;
    transition: transform var(--transition);
}
.nt-news__card--small:hover { transform: translateY(-3px); }

/* ── صورة وتدرج نصي مشترك ── */
.nt-news__img-wrap { position: absolute; inset: 0; }
.nt-news__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nt-news__content {
    position: absolute;
    bottom: 0; right: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    padding: 20px 18px 16px;
    color: #fff;
}

.nt-news__title {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 5px;
}
.nt-news__card--full .nt-news__title  { font-size: 1.4rem; }
.nt-news__card--tall .nt-news__title  { font-size: 1.1rem; }

.nt-news__summary {
    font-size: 0.82rem;
    opacity: 0.88;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── زر عرض الكل ── */
.nt-news__viewall-wrap { text-align: center; margin-top: 36px; }

/* ── موبايل ── */
@media (max-width: 900px) {
    .nt-news__row-tall { grid-template-columns: 1fr; }
    .nt-news__row4     { grid-template-columns: 1fr 1fr; }
    .nt-news__card--tall { min-height: 280px; }
}
@media (max-width: 600px) {
    .nt-news__card--full  { height: 260px; }
    .nt-news__row4        { grid-template-columns: 1fr 1fr; }
    .nt-news__card--small { min-height: 150px; }
}

/* =====================================================
   FAQS SECTION (matches photo/7.png)
   ===================================================== */
.nt-faqs { padding: 80px 0; }

.nt-faqs__list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

.nt-faqs__item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color var(--transition);
}

.nt-faqs__item.open { border-color: var(--primary); }

.nt-faqs__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: right;
    cursor: pointer;
    font-family: inherit;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.nt-faqs__q:hover { background: var(--bg-alt); }
.nt-faqs__item.open .nt-faqs__q { background: var(--bg-alt); }

.nt-faqs__num {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 900;
    min-width: 28px;
    text-align: center;
}

.nt-faqs__q-text { flex: 1; text-align: right; }

.nt-faqs__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all var(--transition);
}

.nt-faqs__item.open .nt-faqs__icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: rotate(45deg);
}

.nt-faqs__a {
    padding: 0 24px 20px;
    border-top: 1px solid var(--border);
}

.nt-faqs__a p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 14px;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: 80px 0;
    background: var(--secondary);
    color: #fff;
}

.stats-section .section-title { color: #fff; }

.stat-item { text-align: center; padding: 24px; }

.stat-icon { margin-bottom: 16px; }

.stat-icon-circle {
    display: inline-flex;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(209,22,43,0.15);
    align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-top { padding-bottom: 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover { border-color: var(--primary); color: var(--primary); }

.footer-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: color var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links li a::before {
    content: '›';
    color: var(--primary);
    font-weight: 900;
}
.footer-links li a:hover { color: #fff; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-cert-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-cert-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* =====================================================
   STICKY WIDGET (whatsapp / call)
   ===================================================== */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform var(--transition);
}

.sticky-btn:hover { transform: scale(1.1); }
.sticky-btn--wa { background: #25d366; color: #fff; }
.sticky-btn--phone { background: var(--primary); color: #fff; }

/* =====================================================
   EMPTY STATE
   ===================================================== */
.nt-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

.nt-empty-state i { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: 0.4; }

/* =====================================================
   DARK MODE BADGE / MISC
   ===================================================== */
.nt-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: show everything after 0.4s in case JS fails */
@keyframes ntReveal {
    to { opacity: 1; transform: none; }
}
[data-animate] {
    animation: ntReveal 0s 0.4s forwards;
}

/* =====================================================
   SINGLE PAGES
   ===================================================== */
.page-hero {
    background: var(--bg-alt);
    padding: calc(var(--header-offset) + 24px) 0 40px;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; }
.page-hero .breadcrumb { margin-top: 8px; color: var(--text-muted); font-size: 0.85rem; }
.page-hero .breadcrumb a { color: var(--primary); }

.single-content { padding: 60px 0; }

/* nt-clients duplicate block removed — see first definition above */

/* =====================================================
   CLIENTS PAGE — Grid
   ===================================================== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.client-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.client-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.10); }

.client-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    text-decoration: none;
    color: var(--text);
    gap: 10px;
}

.client-card-logo-wrap {
    width: 90px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-card-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.client-card-logo-ph {
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 1.8rem;
    color: var(--primary);
}
.client-card-name  { font-weight: 800; font-size: 0.9rem; }
.client-card-blurb { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.client-card-link  { font-size: 0.78rem; color: var(--primary); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info-box {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
}

.contact-info-item a:hover { color: var(--primary); }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: transform var(--transition);
    text-decoration: none;
}
.social-btn:hover { transform: translateY(-3px); color: #fff; }

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 24px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.whatsapp-cta:hover { background: #1ead54; transform: translateY(-2px); color: #fff; }

.map-wrap {
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; display: block; border: 0; }

/* =====================================================
   FORMS (shared: contact + jobs)
   ===================================================== */
.nt-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-col { display: flex; flex-direction: column; gap: 6px; }

.form-group-full { margin-bottom: 16px; }

.form-col label,
.form-group-full label,
.nt-form label { font-size: 0.85rem; font-weight: 700; color: var(--text); }

.req { color: var(--primary); }

.nt-form input[type=text],
.nt-form input[type=email],
.nt-form input[type=tel],
.nt-form input[type=url],
.nt-form input[type=date],
.nt-form input[type=number],
.nt-form select,
.nt-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-ar);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.nt-form input:focus,
.nt-form select:focus,
.nt-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.nt-form textarea { resize: vertical; min-height: 110px; line-height: 1.7; }

.check-group { display: flex; gap: 20px; flex-wrap: wrap; padding: 8px 0; }
.check-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; cursor: pointer; }
.check-item input { accent-color: var(--primary); width: 16px; height: 16px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    font-family: var(--font-ar);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }
.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

.section-head { font-size: 1.25rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }

/* Alerts */
.nt-alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.nt-alert--ok  { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.nt-alert--err { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =====================================================
   JOBS PAGE — form card
   ===================================================== */
.nt-form-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

/* =====================================================
   SERVICES ARCHIVE
   ===================================================== */
.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card-link {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.11);
    color: var(--text);
}

.service-card-icon { position: relative; height: 180px; background: var(--bg-alt); overflow: hidden; }
.service-card-img  { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card-icon-ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; color: var(--primary);
    background: var(--primary-light);
}

.service-card-body  { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.service-card-title { font-size: 1.1rem; font-weight: 900; margin-bottom: 12px; text-align: center; }
.service-card-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; text-align: justify; width: 100%; }
.service-card-link-text { font-size: 0.85rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 6px; margin-top: auto; }

/* =====================================================
   COMPOUNDS ARCHIVE
   ===================================================== */
.compounds-filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.compounds-search {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
    max-width: 460px;
}
.compounds-search-icon { padding: 0 14px; color: var(--text-muted); font-size: 0.95rem; }
.compounds-search input { border: none; outline: none; flex: 1; padding: 10px 8px; font-size: 0.9rem; font-family: var(--font-ar); background: transparent; color: var(--text); }

.compounds-select {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-ar);
    background: var(--bg);
    color: var(--text);
    min-width: 180px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.property-card-link {
    display: block;
    text-decoration: none;
    color: var(--text);
    height: 100%;
}

.property-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.property-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.property-media { position: relative; height: 280px; overflow: hidden; }
.property-img   { width: 100%; height: 100%; object-fit: cover; display: block; }

.property-badge {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
}
.property-badge--gray  { background: rgba(80,80,80,0.88); }
.property-badge--green { background: #28a745; }
.property-badge--blue  { background: #0d6efd; }

.property-location {
    position: absolute;
    bottom: 10px;
    inset-inline-start: 10px;
    background: rgba(0,0,0,0.62);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-body { padding: 10px 14px; flex: 1; display: flex; flex-direction: column; }
.property-name { font-size: 0.88rem; font-weight: 800; margin-bottom: 6px; }

.property-specs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.property-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.property-spec-item i { color: var(--primary); font-size: 0.85rem; }
.property-spec-item span { font-weight: 700; color: var(--text); }

.property-divider { height: 1px; background: var(--border); margin: 10px 0; }

.property-footer { margin-top: auto; }
.property-amenities { display: flex; gap: 5px; flex-wrap: wrap; }
.property-amenity {
    width: 26px; height: 26px;
    border-radius: 6px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.82rem;
    transition: all var(--transition);
}
.property-amenity:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

.compounds-cta-bar {
    margin-top: 56px;
    padding: 28px 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.compounds-cta-bar h5 { font-size: 1.05rem; font-weight: 900; margin-bottom: 4px; }
.compounds-cta-bar p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =====================================================
   SHARED UTILS
   ===================================================== */
.text-center { text-align: center; }
.nt-empty-state { padding: 64px 20px; text-align: center; color: var(--text-muted); }
.nt-empty-state i { font-size: 3rem; opacity: 0.25; display: block; margin-bottom: 16px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .nt-services__card { width: 240px; }
    .footer-grid { gap: 28px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .compounds-filter-bar { flex-direction: column; }
    .compounds-search { max-width: 100%; }
    .compounds-select { width: 100%; }
    .compounds-cta-bar { flex-direction: column; text-align: center; }
    .properties-grid { grid-template-columns: 1fr; }
    .services-archive-grid { grid-template-columns: 1fr 1fr; }
    .nt-form-card { padding: 24px 18px; }
}
@media (max-width: 480px) {
    .services-archive-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   DARK MODE OVERRIDES
   ===================================================== */
[data-theme="dark"] .site-header {
    background: #0f172a;
    border-color: #334155;
}
[data-theme="dark"] .mobile-nav {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .nt-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
[data-theme="dark"] .nt-quote-bar {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .nt-services__card,
[data-theme="dark"] .service-card-link,
[data-theme="dark"] .property-card,
[data-theme="dark"] .nt-news__card,
[data-theme="dark"] .nt-faqs__item,
[data-theme="dark"] .contact-info-box,
[data-theme="dark"] .nt-form-card,
[data-theme="dark"] .nt-form input,
[data-theme="dark"] .nt-form select,
[data-theme="dark"] .nt-form textarea,
[data-theme="dark"] .compounds-search,
[data-theme="dark"] .compounds-select {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
[data-theme="dark"] .nt-services__card .nt-services__body,
[data-theme="dark"] .nt-services__card .nt-services__title,
[data-theme="dark"] .nt-services__card .nt-services__desc {
    background: #1e293b;
    color: #f1f5f9;
}
[data-theme="dark"] .nt-services__card .nt-services__desc { color: #9ca3af; }
[data-theme="dark"] .nt-services__photo-ph { background: #1e293b; }
[data-theme="dark"] .nt-services__track { background: transparent; }
[data-theme="dark"] .nt-services__nav {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
[data-theme="dark"] .nt-services__nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
[data-theme="dark"] .nt-services { background: var(--bg); }
[data-theme="dark"] .nt-needs { background: var(--bg); }
[data-theme="dark"] .nt-needs__panel {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .property-card {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .property-card .property-title,
[data-theme="dark"] .property-card .property-location {
    color: #f1f5f9;
}
[data-theme="dark"] .property-amenity {
    background: #334155;
    color: #9ca3af;
}
[data-theme="dark"] .nt-srv-cta-divider {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .nt-form input::placeholder,
[data-theme="dark"] .nt-form textarea::placeholder {
    color: #64748b;
}
[data-theme="dark"] .page-hero {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .compounds-cta-bar {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .nt-faqs__q {
    background: #1e293b;
    color: #f1f5f9;
}
[data-theme="dark"] .nt-faqs__a {
    background: #1e293b;
    color: #9ca3af;
}
[data-theme="dark"] .site-footer {
    background: #020617;
}
[data-theme="dark"] .footer-bottom {
    border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .property-card--compound {
    background: #1e293b;
}
[data-theme="dark"] .nt-needs__panel {
    background: #1e293b;
    border-color: #334155;
}
[data-theme="dark"] .nt-needs__item {
    background: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
[data-theme="dark"] .nt-needs__item:hover {
    border-color: var(--primary);
}
[data-theme="dark"] .theme-toggle {
    background: #1e293b;
    border-color: #334155;
    color: #9ca3af;
}
