:root {
    --wesal-bg: #efece7;
    --wesal-text: #2c231c;
    --wesal-muted: #a8a293;
    --wesal-primary: #27d045;
    --wesal-dark: #211c18;
    --wesal-card: #f6f0e4;
    --wesal-border: rgba(255, 255, 255, 0.25);
    --wesal-container: 1440px;
}

body.wesal-landing {
    background: var(--wesal-bg);
    color: var(--wesal-text);
    font-family: 'AbdoMaster', 'Tajawal', sans-serif;
}

.wesal-nav {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(32, 32, 32, 0.7) 0%, rgba(32, 32, 32, 0.35) 60%, transparent 100%);
    color: #fff;
}

.wesal-nav .nav-shell {
    max-width: var(--wesal-container);
    margin: 0 auto;
    padding: clamp(12px, 2vw, 24px) clamp(16px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wesal-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.wesal-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wesal-nav .pill-btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-weight: 700;
    transition: opacity 180ms ease, box-shadow 200ms ease, transform 160ms ease;
}

.wesal-nav .pill-btn:hover {
    opacity: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.wesal-nav .lang-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(33, 28, 24, 0.64);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.wesal-nav .cta-btn {
    background: var(--wesal-primary);
    color: #fff;
    border: 1px solid transparent;
    padding-inline: 20px;
}

.wesal-nav .mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 32, 32, 0.9) 0%, rgba(32, 32, 32, 0.82) 100%), url('/landing/images/header0.png') center/cover no-repeat;
    color: #fff;
    z-index: 999;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.mobile-menu .menu-links a,
.mobile-menu .menu-links button {
    width: 100%;
    max-width: 520px;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--wesal-border);
    color: #fff;
    text-align: center;
    transition: opacity 160ms ease, box-shadow 180ms ease;
}

.mobile-menu .menu-links a:hover,
.mobile-menu .menu-links button:hover {
    opacity: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.wesal-hero {
    position: relative;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

.wesal-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #343434 0%, rgba(52, 52, 52, 0.7) 40%, transparent 70%);
}

.wesal-hero .hero-noise {
    position: absolute;
    inset: 0;
    mix-blend-mode: overlay;
    opacity: 0.75;
    object-fit: cover;
}

.wesal-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(24px, 6vw, 64px) clamp(16px, 6vw, 48px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wesal-hero .hero-title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.2;
    font-weight: 800;
}

.wesal-hero .hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: #c3bba7;
    line-height: 1.6;
}

.wesal-hero .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.wesal-hero .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(33, 28, 24, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 140ms ease, box-shadow 160ms ease, opacity 140ms ease;
}

.wesal-hero .hero-btn.primary {
    background: var(--wesal-primary);
    border-color: var(--wesal-primary);
}

.wesal-hero .hero-btn:hover {
    transform: translateY(-1px);
    opacity: 1;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.wesal-section-shell {
    max-width: var(--wesal-container);
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px);
}

.wesal-section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.wesal-section-heading .title {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.3;
    color: var(--wesal-text);
    font-weight: 800;
}

.wesal-section-heading .highlight {
    color: #977d4d;
}

.wesal-stats-grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 768px) {
    .wesal-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .wesal-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.wesal-stat-card {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wesal-stat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wesal-stat-card .fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(239, 236, 231, 0) 32%, rgba(239, 236, 231, 0.88) 64%, #efece7 100%);
}

.wesal-stat-card .content {
    position: relative;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--wesal-text);
}

.wesal-stat-card .value {
    font-size: 32px;
    font-weight: 800;
}

.wesal-stat-card .label {
    font-size: 18px;
    color: #a6876b;
}

.wesal-projects {
    background: var(--wesal-bg);
    padding: clamp(32px, 6vw, 64px) 0;
}

.wesal-projects-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .wesal-projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.wesal-project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wesal-project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.wesal-project-card .project-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.wesal-project-card .project-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--wesal-text);
}

.wesal-project-card .project-desc {
    color: #7a6b59;
    font-size: 15px;
    line-height: 1.6;
}

.wesal-project-card .project-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #977d4d;
    font-weight: 700;
}

.wesal-cta {
    margin: clamp(32px, 5vw, 64px) auto;
    max-width: 900px;
    background: #ffe9ce;
    border-radius: 20px;
    padding: clamp(20px, 6vw, 32px);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.wesal-cta .cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #27d045;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.wesal-cta .cta-text {
    flex: 1;
}

.wesal-cta .cta-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--wesal-text);
}

.wesal-cta .cta-desc {
    color: #7a6b59;
    font-size: 15px;
    line-height: 1.5;
}

.wesal-cta .cta-action {
    background: var(--wesal-primary);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

@media (max-width: 768px) {
    .wesal-nav .nav-links,
    .wesal-nav .nav-actions {
        display: none;
    }
    .wesal-cta {
        flex-direction: column;
        text-align: center;
    }
}